Skip to content

feat(dataViz): add bar, line and donut colour tokens for graphs #32

feat(dataViz): add bar, line and donut colour tokens for graphs

feat(dataViz): add bar, line and donut colour tokens for graphs #32

Workflow file for this run

name: Test Semantic Release (Dry Run)
on:
pull_request:
branches:
- master
jobs:
test-release:
name: Test Release Process (Dry Run)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "22"
- name: Install dependencies
run: npm ci
- name: Lint commits messages
run: npx commitlint --from origin/master --to HEAD --verbose
- name: Test semantic-release setup (dry-run)
run: npx semantic-release --dry-run
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}