-
Notifications
You must be signed in to change notification settings - Fork 59
44 lines (35 loc) · 1.08 KB
/
inspecjs-tests.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: Run InspecJS Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18.18"
check-latest: true
cache: 'yarn'
- name: Remove frontend and backend code to ensure the proper dependencies are declared in the inspecjs package.json
run: |
rm -rf apps/frontend
rm -rf apps/backend
- name: Install project dependencies
run: yarn inspecjs install --frozen-lockfile
- name: Run unit tests
run: yarn inspecjs test
- name: Validate there are no changes between the inspec schemas and generated parsers
run: |
bundle install --gemfile libs/inspecjs/Gemfile
yarn inspecjs gen-types
yarn inspecjs validate-types
- name: Ensure InspecJS builds cleanly
run: yarn inspecjs build