Skip to content

v11.0.0-rc.764.1

v11.0.0-rc.764.1 #4

Workflow file for this run

name: CI v11
on:
pull_request:
branches:
- v11
push:
branches:
- v11
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
# only versions of node 22 and above are supported
node: ['22.x']
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Build
run: yarn build