Merge branch 'main' into feat/stashed-wallet #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SUIET_KIT_CICD_PIPELINE_FOR_EXP | |
on: | |
push: | |
tags: | |
- v*-exp-* | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [16] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} # TODO: enable pnpm cache (setup-node@v3 has issues with pnpm@7) | |
- name: Install dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Build all packages | |
run: npm run build:all | |
- name: Publish all packages | |
run: npm run exp:publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |