Skip to content

Commit 39bc8fb

Browse files
authored
Merge pull request #207 from CreateThrive/bugfix/workflow-not-working
Updated setup node action in workflows files
2 parents 39868ad + 8e931a3 commit 39bc8fb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/production-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2.3.2
1414
- name: Setup Node.js environment
15-
uses: actions/setup-node@v2.1.1
15+
uses: actions/setup-node@v2-beta
1616
with:
1717
node-version: '12.x'
1818
- name: npm install, build, and test

.github/workflows/pull-requests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
ref: ${{ github.ref }}
2020
- name: Setup Node.js environment
21-
uses: actions/setup-node@v2.1.1
21+
uses: actions/setup-node@v2-beta
2222
with:
2323
node-version: '12.x'
2424
- name: Installing dependencies
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v2.3.2
3737
- name: Setup Node.js environment
38-
uses: actions/setup-node@v2.1.1
38+
uses: actions/setup-node@v2-beta
3939
with:
4040
node-version: '12.x'
4141
- name: Installing dependencies

.github/workflows/staging-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2.3.2
1414
- name: Setup Node.js environment
15-
uses: actions/setup-node@v2.1.1
15+
uses: actions/setup-node@v2-beta
1616
with:
1717
node-version: '12.x'
1818
- name: npm install, build, and test

src/pages/User/__snapshots__/User.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ exports[`<User /> rendering should render without crashing 1`] = `
204204
<input
205205
class=""
206206
type="text"
207-
value="10-02-20"
207+
value="11-18-20"
208208
/>
209209
</div>
210210
</div>
@@ -429,7 +429,7 @@ exports[`<User /> rendering should render without crashing 1`] = `
429429
<p
430430
class="date"
431431
>
432-
Fri, Oct 2, 2020
432+
Wed, Nov 18, 2020
433433
</p>
434434
</div>
435435
</div>

0 commit comments

Comments
 (0)