Skip to content

Commit

Permalink
change main-pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
RamRamez committed Jul 22, 2024
1 parent 1a469c7 commit 3a8e70b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/main-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.14.0
node-version: 20.14.0
- name: Install dependencies
run: npm ci
run: yarn install
- name: Run linter
run: npm run lint
run: yarn lint
- name: Run migrations
run: npm run db:migrate:run:test
run: yarn db:migrate:run:test
- name: Run tests
run: npm run test
run: yarn test

publish:
needs: test
Expand All @@ -60,6 +60,10 @@ jobs:
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Build image and push to GitHub Packages
uses: docker/build-push-action@v1
with:
Expand Down

0 comments on commit 3a8e70b

Please sign in to comment.