Skip to content

Replace travis with github actions (#49) #1

Replace travis with github actions (#49)

Replace travis with github actions (#49) #1

Workflow file for this run

name: unit-tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: npm run test-ci