Skip to content

Add a fast-check test for arg parsing #122

Add a fast-check test for arg parsing

Add a fast-check test for arg parsing #122

Workflow file for this run

name: Changesets
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
checks: read
issues: read
pull-requests: write
jobs:
changesets:
name: Changesets
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
filter: blob:none
# We clone using a deploy key so that this workflow can
# push tags and trigger the release workflow, which GHA
# tokens don't allow.
ssh-key: ${{ secrets.DEPLOY_KEY }}
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: '*'
- run: npm ci
if: ${{ github.event_name != 'schedule' }}
- run: npm run build
- run: npm test
- uses: changesets/action@aba318e9165b45b7948c60273e0b72fce0a64eb9 # v1.4.7
with:
publish: npx changeset tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}