This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
107 lines (105 loc) · 3.05 KB
/
test-and-release.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: test-and-release
on:
push:
branches:
- master
paths-ignore:
- "examples/**"
- "media/**"
- "scripts/**"
- "LICENSE"
pull_request:
paths-ignore:
- "examples/**"
- "media/**"
- "scripts/**"
- "LICENSE"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 21]
fail-fast: true
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: ${{ matrix.node }}
- name: Cache node modules
uses: actions/cache@main
env:
cache-name: cache-node-${{ matrix.node }}-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install
run: npm ci
- name: Tests
run: npm test
version-check:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/master'
outputs:
changed: ${{ steps.check.outputs.changed }}
version: ${{ steps.check.outputs.version }}
steps:
- uses: actions/checkout@main
- id: check
uses: EndBug/version-check@v2
with:
diff-search: true
token: ${{ secrets.GITHUB_TOKEN }}
release:
runs-on: ubuntu-latest
needs: version-check
if: needs.version-check.outputs.changed == 'true'
steps:
- uses: actions/checkout@main
# https://github.com/rickstaa/action-create-tag/issues/10
- name: "Change perms on GITHUB_WORKSPACE"
run: |
sudo chown -R root:root $GITHUB_WORKSPACE
sudo chmod -R 0777 $GITHUB_WORKSPACE
- uses: rickstaa/action-create-tag@main
with:
tag: v${{ needs.version-check.outputs.version }}
message: v${{ needs.version-check.outputs.version }}
- uses: ncipollo/release-action@main
with:
name: v${{ needs.version-check.outputs.version }}
tag: v${{ needs.version-check.outputs.version }}
token: ${{ secrets.GITHUB_TOKEN }}
npm-publish:
runs-on: ubuntu-latest
needs: release
if: needs.version-check.outputs.changed == 'true'
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
- uses: actions/cache@main
env:
cache-name: cache-node-${{ matrix.node }}-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install
run: |
set -e
npm ci
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}