Skip to content

v1.1.1-canary.1

v1.1.1-canary.1 #42

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CI: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn jest --ci
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js 24
uses: actions/setup-node@v6
with:
node-version: 24.x
- run: yarn --frozen-lockfile
- run: yarn lint