feat: add sass support and fonts #75
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: Lint and test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lint-test: | |
name: Lint and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Cache node modules | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dependencies, lint files and run tests | |
run: | | |
npm ci | |
npm run lint | |
# npm run test | |
# - name: Save code coverage to artifact | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: code-coverage | |
# path: "coverage/clover.xml" | |
# retention-days: 5 | |
# upload-coverage: | |
# name: Upload code coverage | |
# runs-on: ubuntu-latest | |
# needs: | |
# - lint-test | |
# steps: | |
# - name: Fetch code coverage artifact | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: code-coverage | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v4 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# fail_ci_if_error: true |