-
Notifications
You must be signed in to change notification settings - Fork 22
54 lines (41 loc) · 1.15 KB
/
build.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
45
46
47
48
49
50
51
52
53
54
name: Test Compilation
# on: [push, pull_request]
on: []
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
# - name: Install required build toolchain
# if: matrix.os == 'ubuntu-latest'
# run: sudo apt-get install gcc-multilib g++-multilib
- name: Enable Corepack
run: corepack enable
env:
ADBLOCK: true
- name: Install Yarn Berry
run: corepack prepare yarn@stable --activate
env:
ADBLOCK: true
- name: Set Yarn version
run: yarn set version stable
env:
ADBLOCK: true
- name: Install dependencies
run: yarn install --mode update-lockfile
env:
ADBLOCK: true
- name: Get commit message
run: echo "::set-output name=message::$(git log --no-merges -1 --oneline)"
- name: Does building work?
run: yarn run build
- name: Done
run: echo Done