Skip to content

Bump next from 14.0.0 to 14.1.1 #57

Bump next from 14.0.0 to 14.1.1

Bump next from 14.0.0 to 14.1.1 #57

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
SKIP_ENV_VALIDATION: true
jobs:
cache-and-install:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Cache pnpm store
uses: actions/cache@v2
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Run typechecks
run: pnpm run typecheck
- name: Run lints
run: pnpm run lint