Skip to content

Commit

Permalink
build: update gh action checkout and node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alee committed Oct 28, 2023
1 parent 6ec3485 commit 523b228
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: Clean install
run: yarn install --frozen-lockfile
- name: Lint
Expand All @@ -33,11 +33,11 @@ jobs:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: Clean install
run: yarn install --frozen-lockfile
- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: configure for staging environment
run: ./configure dev
- uses: actions/checkout@v4
- name: configure for prod environment
run: ./configure prod
- name: Compile TS code for production
run: make buildprod
- name: Run tests
Expand Down

0 comments on commit 523b228

Please sign in to comment.