-
-
Notifications
You must be signed in to change notification settings - Fork 204
35 lines (28 loc) · 751 Bytes
/
Copy pathcode-checks.yml
File metadata and controls
35 lines (28 loc) · 751 Bytes
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
name: CI
on:
pull_request:
jobs:
verify:
name: Code checks and build verification
runs-on: ubuntu-latest
env:
HUSKY: "0"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
cache-dependency-path: package-lock.json
- name: Install root dependencies
run: npm ci
- name: Verify icons library package
run: npm run generate:icons && npm run verify:root
- name: Install showcase dependencies
run: npm ci
working-directory: showcase
- name: Build showcase
run: npm run build
working-directory: showcase