Skip to content

9 - created user table #16

9 - created user table

9 - created user table #16

Workflow file for this run

name: CI
on:
[pull_request]
permissions: read-all
jobs:
eslint:
env:
REVIEWDOG_GITHUB_API_TOKEN: $${{ secret.sCTC_DEVOPS_ORG_PAT }}

Check failure on line 11 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 11, Col: 35): Unrecognized named-value: 'secret'. Located at position 1 within expression: secret.sCTC_DEVOPS_ORG_PAT
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: yarn install
- name: Run eslint with reviewdog
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.CTC_DEVOPS_ORG_PAT }}
reporter: github-pr-review
fail_on_error: false
eslint_flags: '**/*.{js,jsx}'
detect-secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run detect-secrets with reviewdog
uses: reviewdog/action-detect-secrets@master
with:
github_token: ${{ secrets.CTC_DEVOPS_ORG_PAT }}
reporter: github-pr-review
# Prevents false positives from failing job
fail_on_error: false