Upgraded version to v9.0.0-beta.8 #35
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: Publish new release | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
release: | |
strategy: | |
matrix: | |
os: [macos-14, windows-2022, ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
name: Publish new release | |
steps: | |
- name: Checkout current commit/branch/tag | |
uses: actions/checkout@v4 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Configure pnpm for release | |
run: | | |
pnpm config set shamefully-hoist true --location=project | |
pnpm config set auto-install-peers true --location=project | |
pnpm config set strict-peer-dependencies true --location=project | |
- name: Install dependencies | |
run: pnpm install | |
env: | |
NODE_ENV: development | |
- name: Run typecheck | |
run: pnpm typecheck | |
- name: Run linter | |
run: pnpm lint | |
- name: Run prettier | |
run: pnpm prettier:check | |
- name: Run tests | |
run: pnpm test | |
- name: Build app | |
run: pnpm build | |
env: | |
NODE_ENV: production | |
- name: Package and publish | |
run: pnpm package:publish | |
env: | |
CI: true | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |