-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 1000 Bytes
/
ci.yaml
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
---
name: CI
on:
push:
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "latest"
cache: yarn
- name: Install Yarn@stable
run: |
corepack enable
corepack prepare yarn@stable --activate
yarn --version
- name: Restore cache
uses: actions/cache@v4
with:
path: |
node_modules/.vite
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-${{ 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 }}-${{ hashFiles('**/yarn.lock') }}-
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build