Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
fix/ update workflows node-version
Browse files Browse the repository at this point in the history
  • Loading branch information
shpomp committed Mar 27, 2024
1 parent 27af02d commit 640827a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 17.3.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 17.3.x
node-version: 18.x
- run: yarn
env:
CI: true
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
while ! mysqladmin ping -h"127.0.0.1" -P"$PORT" --silent; do
sleep 1
done
- name: Use Node.js 17.3.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 17.3.x
node-version: 18.x
- run: yarn
env:
CI: true
Expand All @@ -51,4 +51,3 @@ jobs:
MYSQL_USER: 'root'
MYSQL_PASSWORD: 'password'
MYSQL_DATABASE: 'test'

4 changes: 2 additions & 2 deletions .github/workflows/static-code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 17.3.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 17.3.x
node-version: 18.x
- run: yarn
- run: yarn run prettier:check
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 17.3.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 17.3.x
node-version: 18.x
- run: yarn install
env:
CI: true
Expand Down

0 comments on commit 640827a

Please sign in to comment.