-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (37 loc) · 1 KB
/
static-code-analysis.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
name: Static Code Analysis
on:
push:
branches: [ master ]
paths:
- packages/**
- .github/workflows/static-code-analysis.yml
pull_request:
branches: [ master ]
paths:
- packages/**
- .github/workflows/static-code-analysis.yml
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout GIT repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
run: sudo apt-get install -y libxi-dev libgl-dev
- name: Update NPM
run: npm install -g npm@latest
- name: Install dependencies
run: npm install
- name: Re-install opencascade.js@beta dependency
run: npm install -w packages/frontend opencascade.js@beta
- name: Build sources
run: npm run build
- name: Lint sources
run: npm run lint