Skip to content

DEV: split color name if shade name included with hyphen #28

DEV: split color name if shade name included with hyphen

DEV: split color name if shade name included with hyphen #28

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
id-token: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build --if-present
- run: npm test
- name: Resolve version
id: version
run: echo "value=$(npm run --silent version)" >> $GITHUB_OUTPUT
- name: Resolve sha
id: sha
run: echo "value=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: 'Version based on commit'
run: npm version ${{ steps.version.outputs.value }}-main.${{ steps.sha.outputs.value }} --force --no-git-tag-version
- run: npm publish --provenance --tag main
if: github.event_name == 'push'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}