Skip to content

fix: Rerun ncc.

fix: Rerun ncc. #95

Workflow file for this run

name: 'build-test'
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- master
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install
- run: npm run all
- name: Verify dist does not need to be rebuilt
run: git add dist && git diff-index --quiet --cached HEAD --
- name: Semantic-release
if: github.ref == 'refs/heads/master'
run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}