feat(dataViz): add bar, line and donut colour tokens for graphs #32
Workflow file for this run
This file contains hidden or 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: 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 }} |