-
Notifications
You must be signed in to change notification settings - Fork 129
63 lines (50 loc) · 1.77 KB
/
Copy pathci.yml
File metadata and controls
63 lines (50 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Continuous Integration
on: [push]
permissions:
id-token: write # required for provenance and OIDC publish
pull-requests: write # to create pull request (changesets/action)
contents: write # to create release (changesets/action)
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node: [24, 26]
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Update npm
run: npm install -g npm@11.7.0
- name: Install dependencies
run: npm ci
- name: Build packages
run: npm run build
- name: Check for unused code
run: npm run knip
- name: Lint code
run: npm run lint:ci
- name: Lint styles
run: npm run lint:css
- name: Run unit tests
# For some reason, the global script doesn't run tests in packages/eslint-plugin-circuit-ui
# I suspect it's because it's not an ES module.
run: npm run test:ci && cd packages/eslint-plugin-circuit-ui && npm run test:ci
- name: Upload results to Codecov
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Create release PR or publish to npm
if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next' || github.ref == 'refs/heads/canary' || startsWith(github.ref, 'refs/heads/release')) && matrix.node == 24
uses: changesets/action@v1
with:
publish: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_PAT }}