1 parent 716d98b commit e1c0127Copy full SHA for e1c0127
2 files changed
.github/workflows/ci.yml
@@ -13,6 +13,8 @@ jobs:
13
lint:
14
name: Lint
15
runs-on: ubuntu-latest
16
+ # Skip CI if this commit has a version tag (Release workflow handles it)
17
+ if: "!startsWith(github.ref, 'refs/tags/v')"
18
steps:
19
- uses: actions/checkout@v4
20
- uses: actions/setup-node@v4
@@ -25,6 +27,8 @@ jobs:
25
27
26
28
test:
29
name: Test (Node ${{ matrix.node }}, ${{ matrix.os }})
30
31
32
strategy:
33
matrix:
34
node: [18, 20, 22]
.github/workflows/release.yml
@@ -7,7 +7,7 @@ on:
7
8
permissions:
9
contents: write
10
- id-token: write # Required for OIDC trusted publishing
+ id-token: write # Required for OIDC trusted publishing
11
12
jobs:
release:
0 commit comments