Skip to content

feat: 5 CI features — lock files, matrix comments, commit status, nig… #58

feat: 5 CI features — lock files, matrix comments, commit status, nig…

feat: 5 CI features — lock files, matrix comments, commit status, nig… #58

Workflow file for this run

name: release
on:
push:
branches: [main]
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
registry-url: https://registry.npmjs.org
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Packed install verification
run: npm run verify:packed-install
- name: Validate checked-in artifacts
run: npm run validate:artifacts
- name: README smoke test
run: npm run smoke
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release