We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 88567b6 + ce98e88 commit b32330cCopy full SHA for b32330c
.github/workflows/format-and-lint.yml
@@ -10,16 +10,14 @@ jobs:
10
lint:
11
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.repository != github.event.pull_request.head.repo.full_name)
12
runs-on: ubuntu-latest
13
- strategy:
14
- matrix:
15
- node-version: [23]
16
steps:
17
- name: Check out branch (pull request)
18
uses: actions/checkout@v4
19
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use Node.js
20
uses: actions/setup-node@v4
21
with:
22
- node-version: ${{ matrix.node-version }}
+ node-version-file: .nvmrc
+ cache: "npm"
23
- name: Install packages
24
run: npm ci
25
- name: Check Formatting with Prettier
0 commit comments