Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Aug 20, 2024
1 parent 15a32b6 commit e7f633e
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: "Publish"

env:
CI: 1
# 7 GiB by default on GitHub, setting to 6 GiB
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
NODE_OPTIONS: --max-old-space-size=6144
GIT_AUTHOR_NAME: "SWC Bot"
GIT_AUTHOR_EMAIL: "[email protected]"
GIT_COMMITTER_NAME: "SWC Bot"
GIT_COMMITTER_EMAIL: "[email protected]"
# https://github.com/actions/setup-node/issues/899#issuecomment-1819151595
SKIP_YARN_COREPACK_CHECK: 1

on:
push:
branches:
- publish-*

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
publish-npm-nightly:
name: "Check publish ${{ matrix.package }}"
strategy:
fail-fast: false
matrix:
package:
- core
- html
uses: ./.github/workflows/publish-npm-package.yml
secrets: inherit
with:
package: ${{ matrix.package }}
version: "v1.7.15-nightly-20240820.1"
buildCli: false
skipBuild: false
skipPublishing: false

0 comments on commit e7f633e

Please sign in to comment.