Skip to content

dummy pull req 2

dummy pull req 2 #12

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
env:
MY_SALT: ${{ vars.SALT }}
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm intsall
run: npm ci
- name: env vars
run: echo ${{ secretes.SALT }}

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

View workflow run for this annotation

GitHub Actions / Unit Tests

Invalid workflow file

The workflow is not valid. .github/workflows/testing.yml (Line: 29, Col: 20): Unrecognized named-value: 'secretes'. Located at position 1 within expression: secretes.SALT
- name: Manage .env
run: source cicd.sh
- name: tests
run: npm test