We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53fc064 commit 7aab28eCopy full SHA for 7aab28e
1 file changed
.github/workflows/format.yml
@@ -7,8 +7,8 @@ on:
7
- master
8
9
jobs:
10
- check-formatting:
11
- name: 'Check Formatting'
+ install:
+ name: "Install"
12
runs-on: ubuntu-latest
13
steps:
14
- name: Checkout files
@@ -17,5 +17,16 @@ jobs:
17
- name: Install node_modules
18
uses: OffchainLabs/actions/node-modules/install@main
19
20
+ check-formatting:
21
+ name: 'Check Formatting'
22
+ runs-on: ubuntu-latest
23
+ needs: install
24
+ steps:
25
+ - name: Checkout files
26
+ uses: actions/checkout@v4
27
+
28
+ - name: Restore node_modules
29
+ uses: OffchainLabs/actions/node-modules/restore@main
30
31
- name: Check formatting with Prettier
- run: yarn prettier:format
32
+ run: yarn prettier:format
0 commit comments