Skip to content

init flake

init flake #495

Workflow file for this run

on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: npm
- run: npm ci
- uses: actions/cache@v3
with:
key: ${{ runner.os }}-gatsby-build-${{ github.run_id }}
path: |
.cache
public
restore-keys: ${{ runner.os }}-gatsby-build-
- run: npm run build
- run: npm run type-check
- run: npm run lint