Skip to content

v0.11.36

v0.11.36 #1649

Workflow file for this run

name: Tests CI
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14', '20']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, build and run tests
run: |
yarn install --frozen-lockfile
yarn build
yarn test:once --coverage
yarn lint
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}