Skip to content

Merge branch 'main' into renovate/mantine-monorepo #173

Merge branch 'main' into renovate/mantine-monorepo

Merge branch 'main' into renovate/mantine-monorepo #173

Workflow file for this run

name: Build and publish
on:
push:
paths-ignore:
- "*.md"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: ⚙️ Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16.13.1"
registry-url: "https://npm.pkg.github.com"
- name: ⬇️ Install Dependencies
run: npm ci
- name: ⚙️ Type check
run: npx tsc
- name: ✅ Test
run: npx vitest run
- name: 📦 Semantic Release
uses: cycjimmy/semantic-release-action@v3
id: semantic
with:
semantic_version: 19.0.5
branches: |
['main']
env:
CI: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}