-
Notifications
You must be signed in to change notification settings - Fork 7
52 lines (43 loc) · 1.26 KB
/
shared_workflow.yml
File metadata and controls
52 lines (43 loc) · 1.26 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Setup Environment and Execute Testing
on:
workflow_call:
inputs:
taskType:
required: true
type: string
jobs:
webinizer_ci:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Install system dependencies
# https://github.com/actions/runner-images/issues/7192
# https://github.com/orgs/community/discussions/47863
run: |
sudo apt-mark hold grub-efi-amd64-signed
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install -y git python3 cmake curl build-essential
- name: Setup emsdk
uses: mymindstorm/setup-emsdk@v12
with:
version: 3.1.31
- name: Verify emsdk setup
run: emcc -v
- name: Setup node version
uses: actions/setup-node@v3
with:
node-version: 16.17.1
- name: Install tool dependencies
run: npm install
- name: Unit Testing
if: ${{ inputs.taskType == 'unit-test' }}
run: |
./.github/scripts/config_dir.sh
npm run test
- name: Linting Check
if: ${{ inputs.taskType == 'linting-check' }}
run: npm run lint