Commit 5a795ed 1 parent 59134a1 commit 5a795ed Copy full SHA for 5a795ed
File tree 2 files changed +11
-12
lines changed
2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
- # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
- # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
-
1
+ # SPDX-FileCopyrightText: © 2020–2025 Luna Brand, Kevin Lu
2
+ # SPDX-Licence-Identifier: AGPL-3.0-or-later
4
3
name : Compile and test
5
-
6
4
on :
7
5
push :
8
6
branches : [master]
9
7
pull_request :
10
8
branches : [master]
11
-
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
12
jobs :
13
13
test :
14
14
strategy :
@@ -17,21 +17,20 @@ jobs:
17
17
os :
18
18
- ubuntu-latest
19
19
- ubuntu-24.04-arm
20
+ node-version :
21
+ - 20
22
+ - 22
20
23
runs-on : ${{ matrix.os }}
21
24
if : >-
22
25
!(
23
26
contains(github.event.head_commit.message, '[skip test]') ||
24
27
contains(github.event.head_commit.message, '[test skip]')
25
28
)
26
- concurrency :
27
- group : ${{ github.workflow }}-${{ github.ref }}
28
- cancel-in-progress : true
29
29
steps :
30
30
- uses : actions/checkout@v4
31
- - name : Install Node
32
- uses : actions/setup-node@v4
31
+ - uses : actions/setup-node@v4
33
32
with :
34
- node-version : 20
33
+ node-version : ${{ matrix.node-version }}
35
34
cache : yarn
36
35
- run : yarn
37
36
- run : yarn build
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ Please use Australian English spellings.
116
116
117
117
## Licence
118
118
119
- Copyright © 2020–2024 Luna Brand, Kevin Lu.
119
+ Copyright © 2020–2025 Luna Brand, Kevin Lu.
120
120
See [COPYING](https://github.com/DawnbrandBots/emcee-tournament-bot/blob/master/COPYING) for more details.
121
121
122
122
```
You can’t perform that action at this time.
0 commit comments