forked from toto04/tmsu.cc
-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (36 loc) · 1.15 KB
/
test.yml
File metadata and controls
44 lines (36 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Test
on:
push:
jobs:
test:
name: Test and Lint
runs-on: ubuntu-latest
env:
SKIP_ENV_VALIDATION: "true"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "pnpm"
- name: Setup pnpm + Next.js cache
uses: actions/cache@v4
with:
path: |
/pnpm/store
${{ github.workspace }}/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.json') }}-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Biome
run: pnpm exec biome ci .
- name: Check TypeScript types
run: pnpm run build