-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (53 loc) · 1.24 KB
/
test.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
name: Test
on:
push:
branches:
- main
tags:
- "v*.*.*"
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup npm
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Translate grammar to JSON
run: npm run prebuild
- name: Run Test
run: npm run test
- name: Build Package
if: always()
run: npm run build
- name: Archive vsix package
if: always()
uses: actions/upload-artifact@v4
with:
name: metamodelica.vsix
path: metamodelica-*.vsix
release:
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
name: metamodelica.vsix
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
metamodelica-*.vsix
fail_on_unmatched_files: true
generate_release_notes: true
append_body: true