chore: update plugin-scaffolder-node version (#1417) #13
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: Push | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: push | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test | |
uses: ./.github/actions/test | |
release: | |
name: Release | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate token | |
id: generate-token | |
uses: actions/create-github-app-token@f04aa94d10cf56334d1c580e077ce2e3569e805d # v1.6.3 | |
with: | |
app-id: ${{ vars.JANUS_IDP_GITHUB_APP_ID }} | |
private-key: ${{ secrets.JANUS_IDP_GITHUB_APP_PRIVATE_KEY }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# don't persist the GITHUB_TOKEN | |
# so that semantic-release can use use the generated token | |
persist-credentials: false | |
- name: Build all packages | |
uses: ./.github/actions/build | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Release via semantic-release | |
run: | | |
npm config set workspaces-update false | |
yarn release --ignore-private-packages | |
env: | |
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_OPTIONS: '--max-old-space-size=8192' |