Merge pull request #124 from planetarium/improve-security #277
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
on: | |
- push | |
- pull_request | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
run_install: true | |
- run: pnpm build | |
- name: jsr publish dry-run | |
run: npx jsr publish --dry-run | |
working-directory: packages/chrono-sdk | |
- if: github.event_name != 'pull_request' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: chrono-extension | |
path: build |