Skip to content

Commit 36600d4

Browse files
committed
fix: fix broken deployments
1 parent 5e03b79 commit 36600d4

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/validate.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: validate
22
on:
33
push:
4-
branches: ["main"]
4+
branches: ['main']
55
pull_request:
6-
branches: ["main"]
6+
branches: ['main']
77

88
jobs:
99
build:
10-
name: "Build"
10+
name: 'Build'
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: ⬇️ Checkout repo
@@ -28,7 +28,7 @@ jobs:
2828
- name: ⎔ Setup node
2929
uses: actions/setup-node@v1
3030
with:
31-
node-version: "14"
31+
node-version: '14'
3232

3333
- name: 📀 Install dependencies
3434
run: npm install
@@ -53,7 +53,7 @@ jobs:
5353
build
5454
5555
deploy:
56-
name: "Deploy"
56+
name: 'Deploy'
5757
runs-on: ubuntu-latest
5858
needs: build
5959
steps:
@@ -71,7 +71,7 @@ jobs:
7171
secrets: '["NETLIFY_AUTH_TOKEN", "NETLIFY_SITE_ID"]'
7272

7373
codecov:
74-
name: "Coverage"
74+
name: 'Coverage'
7575
runs-on: ubuntu-latest
7676
needs: deploy
7777
steps:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@
2525
npm-debug.log*
2626
yarn-debug.log*
2727
yarn-error.log*
28+
29+
.vercel

public/screen.png

-894 KB
Loading

0 commit comments

Comments
 (0)