chore: add renovate reviewers #161
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |