Skip to content

Commit

Permalink
Fixed node versions in Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
danniehansen committed Mar 11, 2024
1 parent 89e87e9 commit bab53d9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
vue-tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
Expand All @@ -19,8 +19,8 @@ jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
Expand All @@ -30,19 +30,19 @@ jobs:
# jest:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 18.x
# node-version: 20.x
# - name: Install dependencies
# run: npm ci
# - name: Run vue-tsc
# run: npm run test
test-infrastructure:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Create folder for testing
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
environment: Develop
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: 'develop'
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
environment: Production
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: 'master'
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
Expand Down

0 comments on commit bab53d9

Please sign in to comment.