Skip to content

fix: fixup #68 for non-string wordDiff.value #44

fix: fixup #68 for non-string wordDiff.value

fix: fixup #68 for non-string wordDiff.value #44

Workflow file for this run

name: Test & Release
on:
push:
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- uses: pnpm/action-setup@v4
with:
version: latest
- name: Install dependencies
run: pnpm i
- name: Run unit tests
run: pnpm run test
release:
name: Release
needs: test
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/next'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- uses: pnpm/action-setup@v4
with:
version: latest
- name: Install dependencies
run: pnpm i
- name: Build application
run: pnpm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: pnpm semantic-release