chore(deps-dev): bump @types/chroma-js from 2.4.3 to 2.4.4 #6214
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check-license-lines: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Check License Lines | |
uses: kt3k/[email protected] | |
# NOTE: replace `markdown-link-check` with <https://github.com/UmbrellaDocs/linkspector> when | |
# Github Action is available. | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Check Markdown Links | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
base-branch: main | |
use-quiet-mode: 'yes' | |
check-modified-files-only: 'yes' | |
config-file: 'check-markdown-links-config.json' | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install | |
- run: yarn build | |
- run: yarn lint | |
- run: yarn test | |
validate-locales: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- run: yarn install | |
- run: yarn run locale:validate | |
all: | |
# This job ensures that all jobs above (now we have just build) are successful. | |
needs: [check-license-lines, build, validate-locales] | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo Success |