Update dependency sass-loader to v16 #864
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: 'Assets' | |
on: | |
create: | |
pull_request: | |
push: | |
branches: | |
- '[0-9]+.[0-9]+.x' | |
- 'refs/pull/*' | |
jobs: | |
webpack: | |
name: 'Build Assets' | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Using Node" | |
uses: "actions/setup-node@v4" | |
- name: "Install dependencies" | |
run: "yarn --cwd assets" | |
- name: "Build" | |
run: "yarn --cwd assets build" | |
- name: "Test" | |
run: "yarn --cwd assets test" | |
- name: "Lint" | |
run: "yarn --cwd assets check-lint" | |
- name: "Format" | |
run: "yarn --cwd assets check-format" | |
- name: "Check size" | |
run: "yarn --cwd assets size" |