Build tree-sitter-modelica #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
run-name: Build tree-sitter-modelica | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
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-modelica.wasm | |
path: | | |
tree-sitter-modelica.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-modelica.wasm | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
tree-sitter-modelica.wasm | |
fail_on_unmatched_files: true | |
generate_release_notes: true | |
append_body: true |