Skip to content

feat: add an utility script for generating palette JSON files #107

feat: add an utility script for generating palette JSON files

feat: add an utility script for generating palette JSON files #107

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x, 20.x]
runs-on: ${{ matrix.os }}
env:
CI: true
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Versions
run: |
echo Node:
node --version
echo NPM:
npm --version
- name: NPM install (ci)
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test