Skip to content

[bug] fix CI test command #2

[bug] fix CI test command

[bug] fix CI test command #2

Workflow file for this run

name: Run Tests
on:
push:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:run