Skip to content

Update ci.yml

Update ci.yml #3

Workflow file for this run

name: CI
on: [push, pull_request]
env:
DATABASE_URL: ${{ context.secrets.DATABASE_URL }}

Check failure on line 6 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: 6, Col: 17): Unrecognized named-value: 'context'. Located at position 1 within expression: context.secrets.DATABASE_URL
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: npm install
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint