chore(deps): bump serialize-javascript, @rollup/plugin-terser and ter… #1360
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: Node.js Package Release | |
| on: push | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| build: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| registry-url: 'https://registry.npmjs.org' | |
| - run: npm install -g npm@latest | |
| - run: npm ci | |
| - run: npm run pull-submodules | |
| - run: npm run prepare-templates | |
| - run: npm run lint | |
| - run: npm run test:ci | |
| - run: npm run build --if-present | |
| - run: npm publish --access public |