Skip to content

Support Node.js 18+ #75

Support Node.js 18+

Support Node.js 18+ #75

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npx lerna@6 bootstrap
- run: yarn lint
- run: yarn test
- name: Upload coverage report
uses: codecov/codecov-action@v2