Skip to content

Merge branch 'main' of github.com:omar0404/blog #8

Merge branch 'main' of github.com:omar0404/blog

Merge branch 'main' of github.com:omar0404/blog #8

Workflow file for this run

name: CI
on: [push, pull_request]
env:
DATABASE_URL: ${{ 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