Skip to content

modified pu-feature.yml indentation #4

modified pu-feature.yml indentation

modified pu-feature.yml indentation #4

Workflow file for this run

name: Push to Feature
on:
push:
branches:
- feature
env:
NODE_VERSION: "16.x"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Tests
run: npm test
security:

Check failure on line 32 in .github/workflows/pu-feature.yml

View workflow run for this annotation

GitHub Actions / Push to Feature

Invalid workflow file

The workflow is not valid. .github/workflows/pu-feature.yml (Line: 32, Col: 5): Unexpected value 'security'
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/node@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}