Skip to content

Commit

Permalink
Support publishing npm package via CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zyc9012 committed Apr 5, 2024
1 parent 1983114 commit 829cacb
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn tsc
- run: yarn lint
- run: yarn test
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn tsc
- run: yarn lint
- run: yarn test
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release

on:
release:
types: [published]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn tsc
- run: yarn lint
- run: yarn test
- run: yarn build
- run: cd packages/core && npm pack
- run: cd packages/react && npm pack
- run: cd packages/formula-parser && npm pack
- uses: actions/upload-artifact@v4
with:
name: packages
path: |
packages/core/fortune-sheet-core-*.tgz
packages/react/fortune-sheet-react-*.tgz
packages/formula-parser/fortune-sheet-formula-parser-*.tgz
- run: cd packages/core && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: cd packages/react && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: cd packages/formula-parser && npm publish || true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 829cacb

Please sign in to comment.