Skip to content

try to fix build

try to fix build #102

Workflow file for this run

on: [push, pull_request]
name: build
jobs:
build:
runs-on: ubuntu-latest
env:
NEXT_TELEMETRY_DISABLED: 1
steps:
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow --tags
- run: yarn install --frozen-lockfile --check-files
- run: yarn build
- uses: actions/cache@v2
id: cache-build
with:
path: ./*
key: ${{ github.sha }}
lint:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/cache@v4
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
- run: yarn lint