Replace actions/checkout Functionality #459
Workflow file for this run
This file contains hidden or 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 SCSS stylesheets | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup NPM | |
| uses: actions/setup-node@v3 | |
| - run: npm install --production=false | |
| - run: npm list | |
| - run: npx stylelint "**/*.scss" |