Skip to content

Add node v22; remove non-LTS (#12) #30

Add node v22; remove non-LTS (#12)

Add node v22; remove non-LTS (#12) #30

Workflow file for this run

name: "test"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: "ubuntu-latest"
strategy:
matrix:
node-version: ["14.x", "16.x", "18.x", "20.x", "22.x"]
steps:
- uses: "actions/checkout@v3"
- name: "Use node v${{ matrix.node-version }}"
uses: "actions/setup-node@v3"
with:
node-version: "${{ matrix.node-version }}"
- run: "yarn install --frozen-lockfile"
- run: "yarn test"