Skip to content

Commit

Permalink
fix: fixed workflow run
Browse files Browse the repository at this point in the history
  • Loading branch information
edvinstava committed Feb 22, 2024
1 parent 1192abf commit f821ed2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/verify-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:

env:
NODE_VERSION: 18.x

jobs:
install_dependencies:
runs-on: ubuntu-latest
Expand All @@ -12,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ env.NODE_VERSION }}

- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
Expand All @@ -31,7 +34,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ env.NODE_VERSION }}

- uses: actions/cache@v2
id: yarn-cache
Expand All @@ -50,7 +53,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ env.NODE_VERSION }}

- uses: actions/cache@v2
id: yarn-cache
Expand All @@ -60,6 +63,3 @@ jobs:

- name: Typescript Check
run: yarn tsc:check
strategy:
matrix:
node-version: [18.x]

0 comments on commit f821ed2

Please sign in to comment.