Created
December 29, 2021 11:58
-
-
Save stfsy/aef87ed6494597b207e517fd6c01cc11 to your computer and use it in GitHub Desktop.
Simple opinionated GitHub Actions workflow for linting of Vue.js with TailwindCSS
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: lints | |
| on: push | |
| jobs: | |
| js: | |
| timeout-minutes: 10 | |
| name: javascript | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: node.js | |
| uses: actions/setup-node@v2.5.0 | |
| with: | |
| node-version: lts/* | |
| - run: npm ci | |
| - run: npm run lint |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment