feat: switch to SVGs with off-white BG + rounded corners and adapted … #413
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: "Linting" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
fetch-depth: 1 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20.13" | |
cache: "npm" | |
- name: Install modules | |
run: npm ci | |
- name: Linting | |
run: npm run lint:check | |
- name: Type-Checking | |
run: npm run check |