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

Update main.yaml #935

Open
wants to merge 25 commits into
base: feature/825/update-dependencies
Choose a base branch
from
Open
Changes from 3 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5e20116
Update supertest
ipasic-softserve Aug 9, 2024
84983d5
Fix tests
ipasic-softserve Aug 9, 2024
aa42a39
Update .github/workflows/main.yaml to use node v.20.15.1
ipasic-softserve Aug 12, 2024
7fdad71
Updated cron
abalanovsky Aug 12, 2024
b4ec10e
Merge pull request #870 from ita-social-projects/feature/862/update-cron
abalanovsky Aug 21, 2024
4895ca3
Updated nodemon package (#860)
ipasic-softserve Aug 27, 2024
7145f7b
Update jest (#863)
ipasic-softserve Aug 27, 2024
f25e2d0
Update googleapis package (#878)
ipasic-softserve Aug 27, 2024
d87bdb5
Update email-templates (#871)
ipasic-softserve Aug 27, 2024
0e75ad3
Update swagger-jsdoc and swagger-ui-express (#869)
ipasic-softserve Aug 27, 2024
2e23655
Update jsonwebtoken (#868)
ipasic-softserve Aug 27, 2024
604c180
Update husky (#864)
ipasic-softserve Aug 27, 2024
4a728a3
Update prettier (#866)
ipasic-softserve Aug 27, 2024
9e5c37f
Merge branch 'develop' into feature/825/update-dependencies
ipasic-softserve Aug 27, 2024
f2cd167
Fix tests
ipasic-softserve Aug 27, 2024
f5a2496
Update main.yaml
new-user888 Oct 4, 2024
9c72bce
Update main.yaml
new-user888 Oct 4, 2024
b9bcc8d
Update main.yaml
new-user888 Oct 4, 2024
cf83dae
Update main.yaml
new-user888 Oct 8, 2024
e4dd5a8
Update dotenv package (#877)
ipasic-softserve Oct 12, 2024
e9bb309
Update eslint and eslint-config-prettier (#867)
ipasic-softserve Oct 12, 2024
810e219
Updated database dependencies (#880)
abalanovsky Oct 29, 2024
c70c905
Resolve conflicts
ipasic-softserve Oct 29, 2024
f6abbd3
Merge branch 'feature/825/update-dependencies' into feature-adding-cache
ipasic-softserve Oct 29, 2024
3311600
Fix test
ipasic-softserve Oct 29, 2024
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
22 changes: 15 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 14
cache: 'npm'

- name : 'Install dependencies'
run: npm install
Expand Down Expand Up @@ -78,13 +79,20 @@ jobs:
Test_Docker:
runs-on: ubuntu-latest
steps:

#Checkout Repository
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3

# Setting up Docker
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

# Docker Build
- uses: docker/build-push-action@v3
with:
push: false
file: ./Dockerfile
tags: back-stage:test
- name: Build
uses: docker/build-push-action@v6
with:
push: false
file: ./Dockerfile
tags: back-stage:test
cache-from: type=gha
cache-to: type=gha, mode=max
Loading