Skip to content

Commit acadc72

Browse files
committed
check
1 parent 8880cee commit acadc72

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.github/workflows/check.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: "Publish"
2+
3+
env:
4+
CI: 1
5+
# 7 GiB by default on GitHub, setting to 6 GiB
6+
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
7+
NODE_OPTIONS: --max-old-space-size=6144
8+
GIT_AUTHOR_NAME: "SWC Bot"
9+
GIT_AUTHOR_EMAIL: "bot@swc.rs"
10+
GIT_COMMITTER_NAME: "SWC Bot"
11+
GIT_COMMITTER_EMAIL: "bot@swc.rs"
12+
# https://github.com/actions/setup-node/issues/899#issuecomment-1819151595
13+
SKIP_YARN_COREPACK_CHECK: 1
14+
15+
on:
16+
push:
17+
branches:
18+
- publish-*
19+
20+
concurrency:
21+
group: ${{ github.workflow }}
22+
cancel-in-progress: true
23+
24+
jobs:
25+
publish-npm-nightly:
26+
name: "Check publish ${{ matrix.package }}"
27+
strategy:
28+
fail-fast: false
29+
matrix:
30+
package:
31+
- core
32+
- html
33+
uses: ./.github/workflows/publish-npm-package.yml
34+
secrets: inherit
35+
with:
36+
package: ${{ matrix.package }}
37+
version: "v1.7.15-nightly-20240820.1"
38+
buildCli: false
39+
skipBuild: false
40+
skipPublishing: false

0 commit comments

Comments
 (0)