-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (33 loc) · 1.03 KB
/
code-integration-checks.yml
File metadata and controls
33 lines (33 loc) · 1.03 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
name: Code Integration Checks
on: ['push']
jobs:
integration-checks:
runs-on: ubuntu-latest
name: Code Inspection
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 22
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Install
run: npm install --frozen-lockfile
- name: Check Code Formatting
run: npm run check:formatting --workspace=pure-parse
- name: Check Types
run: npm run check:circular-dependencies --workspace=pure-parse
- name: Check Types
run: npm run check:types --workspace=pure-parse
# No linters for this repo
# - name: Lint
# run: |
# npm run lint
- name: Test
run: npm run test --workspace=pure-parse
- name: Build
run: npm run build --workspace=pure-parse
- name: Test Build Output
run: npm run build --workspace=test-app