Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use main instead of dev #321

Merged
merged 1 commit into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "Continuous Deployment"
on:
push:
branches:
- dev
- main

jobs:
validation:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/fullcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: "Fullcheck of the project + integration tests"
on:
push:
branches-ignore:
- dev
- staging
- main

workflow_call:
Expand All @@ -27,7 +25,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16.x"
node-version: "18"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand Down Expand Up @@ -67,7 +65,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16.x"
node-version: "18"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand Down