Create testing.yml

This commit is contained in:
gowridurgad 2024-06-19 12:01:19 +05:30 committed by GitHub
parent 871daa956c
commit 6a7500ba3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

19
.github/workflows/testing.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Testing
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install