Support publishing npm package via CI

This commit is contained in:
zyc9012 2024-04-05 15:34:06 +08:00
parent 19831145ed
commit 829cacb8c2
2 changed files with 49 additions and 9 deletions

View File

@ -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
.github/workflows/release.yml vendored Normal file
View File

@ -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 }}