Skip to content

chore: release 1.1.1 #57

chore: release 1.1.1

chore: release 1.1.1 #57

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
name: Test
steps:
- name: Checkout src
uses: actions/checkout@v3
- name: Build with node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn ci_install
- run: yarn eslint .
- run: yarn tsc
- run: yarn test
- name: Upload coverage reports to Codecov
if: matrix.node-version == '16.x'
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}