-
Notifications
You must be signed in to change notification settings - Fork 19
64 lines (54 loc) · 1.58 KB
/
main.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
55
56
57
58
59
60
61
62
63
64
name: Test & release
on:
pull_request:
push:
branches: [master]
jobs:
validate:
name: Build and test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: 📥 Download deps
run: npm install
- name: ▶️ Run validate script
run: npm run validate
- name: Publish Test Report
uses: tradeshift/actions-junit-report@v4
if: ${{ always() }}
with:
check_name: Unit tests
report_paths: 'build/junit**/*.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
release:
name: 🚀 Release
needs: [validate]
runs-on: ubuntu-latest
if: ${{ !github.event.fork &&
contains('refs/heads/master,refs/heads/beta,refs/heads/next,refs/heads/alpha',
github.ref) && github.event_name == 'push' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: 📥 Download deps
run: npm install
- name: 🏗 Run build script
run: npm run --if-present build
- name: 🚀 Release
uses: tradeshift/actions-semantic-release@v1
id: semantic-release
with:
npm_publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN_PUBLIC }}