Skip to content

Merge pull request #31 from Gauravdarkslayer/test-ci-2 #41

Merge pull request #31 from Gauravdarkslayer/test-ci-2

Merge pull request #31 from Gauravdarkslayer/test-ci-2 #41

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- name: lint
run: npm run lint
- name: test
run: npm run test:ci