Skip to content

Renew home

Renew home #226

Workflow file for this run

name: Build
on:
repository_dispatch:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Restore next cache
uses: actions/cache@v4
with:
path: |
.next/cache
key: nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
- name: Run builds and deploys with ${{ matrix.node-version }}
run: |
yarn install
yarn lint