File tree Expand file tree Collapse file tree 2 files changed +19
-14
lines changed
Expand file tree Collapse file tree 2 files changed +19
-14
lines changed Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on : [push, pull_request, workflow_dispatch]
4+
5+ jobs :
6+ lint-and-format :
7+ name : Lint and Format
8+ timeout-minutes : 5
9+ runs-on : ubuntu-24.04
10+ steps :
11+ - uses : actions/checkout@v6
12+ - uses : actions/setup-node@v6
13+ with :
14+ node-version : 20
15+ cache : npm
16+
17+ - run : npm ci
18+ - run : npm run lint
19+ - run : npm run format:check
Original file line number Diff line number Diff line change 9595 - run : xvfb-run -a npm test
9696 if : runner.os == 'Linux'
9797 - run : npm run test:cache-github-real
98-
99- lint-and-format :
100- timeout-minutes : 5
101- runs-on : ubuntu-22.04
102- steps :
103- - uses : actions/checkout@v6
104- - uses : actions/setup-node@v6
105- with :
106- node-version : 20
107- cache : npm
108-
109- - run : npm ci
110- - run : npm run lint
111- - run : npm run format:check
You can’t perform that action at this time.
0 commit comments