-
Notifications
You must be signed in to change notification settings - Fork 23
78 lines (70 loc) · 1.7 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Build, test and publish package
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- run: npm ci
- run: npm run build:package
- uses: actions/upload-artifact@v4
with:
name: mojds-package
path: package
- run: npm run build:dist
- run: npm run build:docs
- uses: actions/upload-artifact@v4
with:
name: mojds-dist
path: dist
test:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: mojds-package
path: package
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Test Sass can be compiled
run: npm run test:sass
publish:
runs-on: ubuntu-latest
needs: [build, test]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: actions/download-artifact@v4
with:
name: mojds-package
path: package
- uses: actions/download-artifact@v4
with:
name: mojds-dist
path: dist
- run: npm ci
- name: Publish to NPM
run: npm run ci:release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}