Skip to content

Add turbo test task and run before push #243

Add turbo test task and run before push

Add turbo test task and run before push #243

Workflow file for this run

name: Release (Changesets)
on:
workflow_dispatch:
push:
branches: [main]
permissions:
contents: write
id-token: write
packages: write
jobs:
release:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/setup
with:
node-version: 24
- name: Build Packages
run: npm run build
- name: Check Types
run: npm run attw
- name: Create Release Pull Request or Publish
uses: changesets/action@e0145edc7d9d8679003495b11f87bd8ef63c0cba
with:
version: npm run version
publish: npm run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ''