File tree Expand file tree Collapse file tree 4 files changed +16904
-17281
lines changed
Expand file tree Collapse file tree 4 files changed +16904
-17281
lines changed Original file line number Diff line number Diff line change 5757
5858 - name : Codecov
5959 uses : codecov/codecov-action@v5
60+ if : ${{ matrix.node == 18 || matrix.node == 18.18 }}
6061 with :
6162 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 3838 with :
3939 languages : ${{ matrix.language }}
4040 queries : +security-and-quality
41+ config : |
42+ paths-ignore:
43+ - test/fixtures/yarn-pnp/.pnp.*
4144
4245 - name : Autobuild
4346 uses : github/codeql-action/autobuild@v3
Original file line number Diff line number Diff line change 1+ name : Publish Any Commit
2+ on :
3+ - push
4+ - pull_request
5+
6+ concurrency :
7+ group : ${{ github.workflow }}-${{ github.ref }}
8+ cancel-in-progress : true
9+
10+ jobs :
11+ publish :
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout Repo
16+ uses : actions/checkout@v4
17+
18+ - name : Setup Node.js LTS
19+ uses : actions/setup-node@v4
20+ with :
21+ node-version : lts/*
22+ cache : yarn
23+
24+ - name : Install dependencies
25+ run : yarn --immutable
26+
27+ - name : Build
28+ run : yarn build
29+
30+ - run : yarn dlx pkg-pr-new publish
You can’t perform that action at this time.
0 commit comments