-
Notifications
You must be signed in to change notification settings - Fork 65
39 lines (37 loc) · 953 Bytes
/
test.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
name: Test Build
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: Set RELEASE_VERSION
run: echo "RELEASE_VERSION=0.0.1" >> $GITHUB_ENV
- name: Apply new version
run: node worker/config/preparePublish.js
- name: Install dashboard modules
run: cd packages/dashboard && npm install
- name: Build dashboard
run: cd packages/dashboard && npm run build
- name: Install worker modules
run: cd worker && npm install
- name: Build worker
run: cd worker && npm run build