Skip to content

release

release #22

Workflow file for this run

name: Lint & Test
on:
push:
branches:
- master
pull_request:
# types: [opened, synchronize, reopened, ready_for_review]
branches:
- '**'
jobs:
test:
name: Lint & test on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [ '20.x', '18.x' ]
# os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
# lint is included in pretest
# - name: Lint
# run: npm run lint
- name: Test
run: npm test
- name: Coverage
run: npm run test:coverage
# run: npm run test:coverage && cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
- name: Coveralls
uses: coverallsapp/github-action@v2