generated from ds-wizard/dsw-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (26 loc) · 756 Bytes
/
zip.yml
File metadata and controls
34 lines (26 loc) · 756 Bytes
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
name: Zip
on:
push:
pull_request:
jobs:
zip:
name: Build Zip
runs-on: ubuntu-latest
env:
NODE_VERSION: 24
steps:
- name: '[setup] Checkout Project'
uses: actions/checkout@v6
- name: '[setup] Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
- name: '[app] Install'
run: npm install
- name: '[app] Build'
run: npm run build
- name: '[release] Create artifact'
uses: actions/upload-artifact@v7
with:
name: plugin
path: dist