Skip to content

Bump next from 14.0.3 to 14.1.1 #67

Bump next from 14.0.3 to 14.1.1

Bump next from 14.0.3 to 14.1.1 #67

Workflow file for this run

name: Quality
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
prettier:
name: Prettier
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: ./tooling/github-actions/install
- name: Run Prettier
run: pnpm format
eslint:
name: ESLint
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup and install
uses: ./tooling/github-actions/install
- name: Lint
run: pnpm lint
typecheck:
name: TypeCheck
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: ./tooling/github-actions/install
- name: Cache TypeScript TSBuild Info Files
id: cache-typescript-tsbuildinfo
uses: actions/cache@v3
with:
path: node_modules/.cache/*-tsbuildinfo.json
# We use the commit hash as the key to always update the cache as a
# workaround to this issue:
# https://github.com/actions/cache/issues/106
key: ${{ runner.os }}-cache-typescript-tsbuildinfo-${{ github.sha }}
restore-keys: ${{ runner.os }}-cache-typescript-tsbuildinfo-
- name: Run TypeScript type check
run: pnpm typecheck