🚸 Initial set of issue templates (#9) #4
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: Release Flow | |
on: | |
push: # Only trigger for tags with format v**** | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
jobs: | |
flow: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write # The OIDC ID token is used for authentication with JSR. | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- run: npm ci | |
- run: npm run check:tsc | |
- run: npm run test:unit | |
- run: npx jsr publish | |