Skip to content

Commit a76a7e3

Browse files
🤖 config(ci): Configure workflow to automate detection of sources lint.
These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/aa845ce62d5726e14a9c13613ccabe0978b29940/src/transforms/github:workflow-configure-ci:lint.js Please contact the author of the transform if you believe there was an error.
1 parent 390c57e commit a76a7e3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci:lint.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: ci:lint
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
cover:
7+
name: Continuous integration (code linting)
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout 🛎️
11+
uses: actions/checkout@v4
12+
13+
- name: Install 📦
14+
uses: bahmutov/npm-install@v1
15+
with:
16+
install-command: yarn --frozen-lockfile --ignore-scripts
17+
useRollingCache: true
18+
19+
- name: Lint 👕
20+
run: yarn lint

0 commit comments

Comments
 (0)