Create version tag #17
Workflow file for this run
This file contains hidden or 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: Create version tag | |
| on: | |
| create: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| ts: | |
| if: "!contains(github.event.pull_request.title, 'WIP!')" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22.x' | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: Run Type Check | |
| run: npm run typecheck | |
| - name: Run Unit Tests | |
| run: npm test | |
| env: | |
| INTEROP: true | |
| OSC_ACCESS_TOKEN: ${{ secrets.OSC_ACCESS_TOKEN }} |