Tests Project 12: fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-BODYPARSER-7926860 - https://snyk.io/vuln/SNYK-JS-EXPRESS-7926867 - https://snyk.io/vuln/SNYK-JS-SEND-7926862 - https://snyk.io/vuln/SNYK-JS-SERVESTATIC-7926865 #82
Workflow file for this run
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 |