Skip to content

Commit

Permalink
chore: remove dev from actions and upgrade node to version 22
Browse files Browse the repository at this point in the history
  • Loading branch information
manekenpix committed Feb 22, 2025
1 parent d478949 commit 7a5f532
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/api_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: API Unit/e2e Tests
on:
pull_request:
branches:
- dev
- main
push:
branches:
- dev
- main

jobs:
files-changed:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
cache: npm
cache-dependency-path: api/package.json

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Image Build

on:
push:
branches: ["dev"]
branches: ["main"]
pull_request:
branches: ["dev"]
branches: ["main"]

jobs:
build-api:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/format_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Format/Lint
on:
pull_request:
branches:
- dev
- main
push:
branches:
- dev
- main

jobs:
files-changed:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
cache: npm
cache-dependency-path: web/package.json

Expand All @@ -59,7 +59,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
cache: npm
cache-dependency-path: api/package.json

Expand Down

0 comments on commit 7a5f532

Please sign in to comment.