Tests Project 12: Merge pull request #7 from amay0808/snyk-fix-1911ca24f42637e152c99c731e43be0b [Snyk] Security upgrade mongoose from 6.11.4 to 8.0.0 #84
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
run-name: "Tests Project 12: ${{ github.event.head_commit.message }}" | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '**' | |
jobs: | |
read_sprint_file: | |
runs-on: ubuntu-latest | |
outputs: | |
sprint: ${{ steps.sprint.outputs.SPRINT_NUMBER }} | |
steps: | |
- name: Set up GitHub Actions | |
uses: actions/checkout@v2 | |
- name: Check if sprint file exist | |
run: bash .github/bin/check-sprint.sh | |
- name: Get sprint number | |
id: sprint | |
run: echo "SPRINT_NUMBER=$(cat sprint)" >> $GITHUB_OUTPUT | |
test_config: | |
runs-on: ubuntu-latest | |
needs: read_sprint_file | |
if: ${{ needs.read_sprint_file.outputs.sprint == '12' }} | |
steps: | |
- name: Set up GitHub Actions | |
uses: actions/checkout@v2 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- name: Get testing lib | |
run: set -eu && git clone --depth 1 https://github.com/practicum-com/tests-12-public.git | |
- name: Installing Dependencies | |
run: npm i | |
- name: Run test config | |
run: cd tests-12-public && bash ./bin/test-config.sh | |
test_endpoints: | |
runs-on: ubuntu-latest | |
needs: read_sprint_file | |
if: ${{ needs.read_sprint_file.outputs.sprint == '12' }} | |
steps: | |
- name: Set up GitHub Actions | |
uses: actions/checkout@v2 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: '4.4' | |
- name: Get testing lib | |
run: set -eu && git clone --depth 1 https://github.com/practicum-com/tests-12-public.git | |
- name: Run prepare-test-endpoints | |
run: cd tests-12-public && bash ./bin/prepare-test-endpoints.sh | |
- name: Installing Dependencies | |
run: npm i | |
- name: Installing wait-port | |
run: npm install -g wait-port | |
- name: Run server | |
run: npm run start & wait-port -t 30000 localhost:3001 | |
- name: Run test endpoints | |
run: cd tests-12-public && bash ./bin/test-endpoints.sh |