Skip to content

ci: switch to github actions #2

ci: switch to github actions

ci: switch to github actions #2

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
cache: npm
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v3