Skip to content

Remove precompress #211

Remove precompress

Remove precompress #211

Workflow file for this run

name: TS - Check Types & Style
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
ts-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
lfs: true
- name: Set up Node + Yarn
uses: actions/setup-node@v3
with:
cache: 'yarn'
# https://nextjs.org/docs/advanced-features/ci-build-caching
- name: Cache NextJS Files
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-
- name: Install JS Dependencies
run: yarn install --frozen-lockfile
- name: Run Check
run: yarn next build