Skip to content

bg(bug fix):fixing bugs #1

bg(bug fix):fixing bugs

bg(bug fix):fixing bugs #1

Workflow file for this run

name: CHAMPS CI
on:
pull_request:
jobs:
tests:
runs-on: windows-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test