Skip to content

feat: Add runtime skip property to conditionally skip codegen #143

feat: Add runtime skip property to conditionally skip codegen

feat: Add runtime skip property to conditionally skip codegen #143

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run type-check
# - run: npm run test
- run: npm run build
- run: npx publint@latest
- run: npx @arethetypeswrong/cli@latest --pack
release:
runs-on: ubuntu-latest
needs: test
permissions: write-all
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- run: npm i -g npm@latest
- run: npm ci
- run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}