Skip to content

DSA_COLOR_TEXT_QUATERNARY (#47) #32

DSA_COLOR_TEXT_QUATERNARY (#47)

DSA_COLOR_TEXT_QUATERNARY (#47) #32

Workflow file for this run

name: Linter and Tests
on:
push:
branches:
- 'master'
pull_request:
jobs:
lint:
name: Run all linters and tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Run linters
run: make lint-no-fix
- name: Run tests
run: make test