generated from pboymt/userscript-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (27 loc) · 817 Bytes
/
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
name: Test, package
on:
push:
pull_request:
branches:
- "main"
- "release/*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.JS
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Package to Javascript bundle
run: npm run build
- uses: actions/upload-artifact@v4
with:
name: bundle
path: "userscript/index.user.js"