Skip to content

Commit

Permalink
🤖 config(ci): Configure workflow to automate detection of sources lint.
Browse files Browse the repository at this point in the history
These changes were automatically generated by a transform whose code can be found at:
  - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/31b7e48f29789fa2e2ad9e16013ff277c3bbca57/src/transforms/github:workflow-configure-ci:lint.js
Please contact the author of the transform if you believe there was an error.
  • Loading branch information
a-flying-potato authored and make-github-pseudonymous-again committed Mar 1, 2024
1 parent c8249e3 commit 9759f19
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci:lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ci:lint
on:
- push
- pull_request
jobs:
cover:
name: Continuous integration (code linting)
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Install 📦
uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --ignore-scripts
useRollingCache: true

- name: Lint 👕
run: yarn lint

0 comments on commit 9759f19

Please sign in to comment.