Skip to content

exec release only on master #60

exec release only on master

exec release only on master #60

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Node CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci-cd.yml (Line: 32, Col: 9): Unexpected symbol: '"master"'. Located at position 22 within expression: contains(github.ref, "master")
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/npm-semver-publish-action@v1.10.0
with:
target-branch: 'master'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}