Skip to content

Commit f65ee08

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

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454

5555
- name: Benchmark
5656
run: yarn benchmark
57+
continue-on-error: true
5758

5859
- name: Codecov
5960
uses: codecov/codecov-action@v5

.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)