Skip to content

Instantly share code, notes, and snippets.

@stfsy
Created December 29, 2021 11:58
Show Gist options
  • Select an option

  • Save stfsy/aef87ed6494597b207e517fd6c01cc11 to your computer and use it in GitHub Desktop.

Select an option

Save stfsy/aef87ed6494597b207e517fd6c01cc11 to your computer and use it in GitHub Desktop.
Simple opinionated GitHub Actions workflow for linting of Vue.js with TailwindCSS
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