Skip to content

fix: allow some case-sensitive svg attributes in lowercase rule (#178) #246

fix: allow some case-sensitive svg attributes in lowercase rule (#178)

fix: allow some case-sensitive svg attributes in lowercase rule (#178) #246

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.16.1
- name: Install
run: yarn install --immutable
- name: Build
run: yarn build
- name: Unit Tests
run: yarn test
- name: Check Spells
run: yarn check:spell
- name: Check Format
run: yarn check:format
- name: Check Types
run: yarn check:ts
- name: Code coverage report
uses: codecov/codecov-action@v2
with:
yml: ./codecov.yml
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittest
name: codecov