Skip to content

fix : workflow

fix : workflow #8

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- '*'
jobs:
bulletproof-api-test-2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test unit
- name: Merge to main
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
git config --global user.email "[email protected]"
git config --global user.name "KNU-K"
git merge --no-ff $GITHUB_SHA
git push origin main
env:
SUPER_TOKEN: ${{secret.SUPER_TOKEN}}

Check failure on line 29 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Node.js CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 29, Col: 32): Unrecognized named-value: 'secret'. Located at position 1 within expression: secret.SUPER_TOKEN