Skip to content

Commit 42cb886

Browse files
committed
chore: hourcekeeping, bump all (dev) deps
1 parent cc7fba1 commit 42cb886

File tree

4 files changed

+16904
-17281
lines changed

4 files changed

+16904
-17281
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@ jobs:
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 }}

.github/workflows/codeql.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
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

.github/workflows/pkg-pr-new.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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

0 commit comments

Comments
 (0)