Skip to content

ci(workflows): update GH release workflow to run on beta #34

ci(workflows): update GH release workflow to run on beta

ci(workflows): update GH release workflow to run on beta #34

Workflow file for this run

name: Release
on:
push:
branches:
- main
- beta
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- name: Install deps 🧶
run: npm ci
release:
name: Release
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- name: Install deps 🧶
run: npm ci
- name: Lint TS and CSS 🎨
run: npm run lint
- name: Lint commit messages 🗂️
run: npx commitlint --from HEAD~1 --to HEAD
- name: Run tests 📋
run: npm run test:ci
- name: Build lib 👷‍♂️
run: npm run build
- name: Release 🚀🚀🚀
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}