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.
1 parent e081833 commit b67555bCopy full SHA for b67555b
.github/workflows/prettier.yml
@@ -1,9 +1,11 @@
1
name: Check Format
2
+
3
on:
4
push:
5
pull_request:
- branches:
6
- - master
+ branches:
7
+ - master
8
9
jobs:
10
check-format:
11
runs-on: ubuntu-latest
@@ -12,16 +14,17 @@ jobs:
12
14
uses: actions/checkout@v2
13
15
with:
16
persist-credentials: false
17
+ submodules: false # 🚫 EVITA EL ERROR DEL SUBMÓDULO ROTO
18
- - uses: actions/[email protected]
19
+ - name: Setup Node.js
20
+ uses: actions/[email protected]
21
22
node-version: 18.x
23
- - name: Install 🔧 # Install dependencies
24
+ - name: Install 🔧
25
run: |
26
npm install
27
28
- name: Check Format
29
30
npm run check-format
-
0 commit comments