-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (48 loc) · 1.18 KB
/
build-parser.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
name: Build
run-name: Build tree-sitter-metamodelica
on:
pull_request:
push:
branches:
- main
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Clean install
run: npm ci
- name: Run build script
run: npm run build
- name: Run test script
run: npm test
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: tree-sitter-metamodelica.wasm
path: |
tree-sitter-metamodelica.wasm
if-no-files-found: error
release:
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
name: tree-sitter-metamodelica.wasm
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
tree-sitter-metamodelica.wasm
fail_on_unmatched_files: true
generate_release_notes: true
append_body: true