Update ci.yml #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: [push, pull_request] | ||
env: | ||
DATABASE_URL: ${{ context.secrets.DATABASE_URL }} | ||
Check failure on line 6 in .github/workflows/ci.yml GitHub Actions / CIInvalid workflow file
|
||
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 |