exec release only on master #60
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: Node CI | ||
on: [push] | ||
jobs: | ||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x, 18.x, 20.x, 21.x] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: npm install, build, and test | ||
run: | | ||
npm install | ||
npm ci | ||
npm test | ||
env: | ||
CI: true | ||
release: | ||
needs: build | ||
name: release | ||
runs-on: ubuntu-latest | ||
if: contains(github.ref, "master") | ||
Check failure on line 32 in .github/workflows/ci-cd.yml GitHub Actions / Node CIInvalid workflow file
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.ACTION_TOKEN }} | ||
- uses: fregante/setup-git-user@v2 | ||
- run: git config --global user.name "dependabot" | ||
- name: Use Node.js 21.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 21.x | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: npm-semver-publish | ||
uses: iuccio/[email protected] | ||
with: | ||
target-branch: 'master' | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||