-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (28 loc) · 916 Bytes
/
intigrity_test.yml
File metadata and controls
37 lines (28 loc) · 916 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
36
37
# This is a basic workflow to help you get started with Actions
name: Test Intigrity Of Build
# Controls when the workflow will run
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js 16
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Lint All Projects
run: yarn nx run-many --target=lint --all=true
- name: Test All Projects
run: yarn nx run-many --target=test --all=true
- name: Test Integration All Projects
run: yarn nx run-many --target=test-integration --all=true
- name: Build All Projects
run: yarn nx run-many --target=build --all=true
- name: Pack All Server
run: yarn nx run-many --target=pack --all=true