Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
test:
name: Build & test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# yarn.lock is gitignored in this repo, so there is no lockfile to pin
# against or to key a cache on — install resolves from package.json.
- run: yarn install
- run: yarn lib:build
- run: yarn lib:test

lint:
name: Lint
runs-on: ubuntu-latest
# Non-blocking for now: a handful of react-hooks v7 findings and one
# deferred public type are still open. Drop continue-on-error once the
# remaining errors are resolved to make lint a required check.
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- run: yarn install
- run: yarn lint
31 changes: 0 additions & 31 deletions .github/workflows/daily-project-check.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/project-check.yml

This file was deleted.

Loading