Skip to content

chore(deps-dev): bump vite-plugin-dts from 3.9.0 to 3.9.1 #1134

chore(deps-dev): bump vite-plugin-dts from 3.9.0 to 3.9.1

chore(deps-dev): bump vite-plugin-dts from 3.9.0 to 3.9.1 #1134

Workflow file for this run

name: CI
on:
push:
branches: [main, alpha, beta]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-and-release:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 20
check-latest: true
- name: 📥 Install dependencies
run: npm ci
- name: 🔍 Lint
run: npm run lint
- name: 🧪 Test
run: npm test
- name: 📦 Release @oazapfts/runtime
run: |
set -e # Exit immediately if a command exits with a non-zero status.
cd packages/runtime
npm install semantic-release-monorepo --no-save
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: 📦 Release oazapfts
run: |
set -e # Exit immediately if a command exits with a non-zero status.
cp README.md packages/codegen/README.md
cd packages/codegen
npm install semantic-release-monorepo --no-save
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}