-
Notifications
You must be signed in to change notification settings - Fork 119
44 lines (41 loc) · 1.06 KB
/
verify.yml
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: Verify Pull Request
on:
pull_request: {}
workflow_dispatch: {}
env:
HUSKY: 0
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Clear npm cache and node_modules
run: |
npm cache clean --force
rm -rf node_modules
rm -rf packages/*/node_modules
- name: Remove problematic directories
run: |
rm -rf node_modules/esbuild
rm -rf node_modules/nx
- name: Install dependencies
run: |
npm install -g npm@latest
npm install --no-optional
env:
NODE_OPTIONS: "--max_old_space_size=4096"
- name: Reinstall esbuild and nx
run: |
npm install esbuild
npm install nx
- name: List installed packages
run: npm list --depth=0
- name: Build packages
run: npx lerna run build
- name: Build examples
run: npm run examples:build