Skip to content

Drop support of Node 16 #394

Drop support of Node 16

Drop support of Node 16 #394

Workflow file for this run

on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [^18.12, ^20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Yarn install
run: yarn install --frozen-lockfile
- name: Transpile
run: yarn build
- name: Lint and run tests
run: yarn test
- name: Pack
run: npm pack