Skip to content

fix: run gh action on master branch #1

fix: run gh action on master branch

fix: run gh action on master branch #1

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v5
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm test
- run: npm run typecheck
- run: npm run build
- name: Verify bundled action is committed
run: npm run check-dist