Skip to content

chore(master): release 2.0.0 (#155) #478

chore(master): release 2.0.0 (#155)

chore(master): release 2.0.0 (#155) #478

Workflow file for this run

name: Build & test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: ${{ matrix.node }}
- name: npm install, build, and test
run: |
npm ci
npm run build
npm test
npm run cov:check
env:
CI: true
- if: matrix.node == '18'
continue-on-error: true
name: Coveralls GitHub Action
uses: coverallsapp/github-action@3dfc5567390f6fa9267c0ee9c251e4c8c3f18949 #v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: './coverage/lcov.info'