perf(core): replace lazysizes
with browser-level lazy loading
#175
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: "Style Lint" | |
on: | |
push: | |
branches-ignore: | |
- "production" | |
- "docs" | |
paths: | |
- "_sass/**/*.scss" | |
pull_request: | |
paths: | |
- "_sass/**/*.scss" | |
jobs: | |
stylelint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
- run: npm i | |
- run: npm test |