Skip to content

v0.3.1

v0.3.1 #161

Workflow file for this run

name: Release Build
on:
push:
branches:
- master
tags:
- v*
paths-ignore:
- README.md
- .vscode
- .editorconfig
- .gitignore
permissions:
contents: write # Allow workflow to create release
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linter
run: yarn lint
- name: Run tests
run: yarn test
windows-build:
needs: test
name: Windows Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
if: startsWith(github.ref, 'refs/tags/')
run: yarn build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update release notes
uses: Trinovantes/action-automatic-release@master
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
is_prerelease: false