Make 0.0.66 work #7
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: Publish packages | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| npm: | |
| runs-on: ubuntu-latest | |
| environment: packages | |
| permissions: | |
| id-token: write | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: ts | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '25.9.x' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Set version | |
| run: npm version ${{ github.ref_name }} --git-tag-version=false | |
| - name: Compile files | |
| run: npm run build | |
| - name: Run tests | |
| run: npm run test | |
| - name: Publish package | |
| run: npm publish |