Bump nodemailer from 6.9.1 to 6.9.9 #40
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
name: "Code Review" | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
workflow_dispatch: {} | |
jobs: | |
code_review: | |
name: Run linting and unit tests | |
timeout-minutes: 10 # temp fix | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
- name: Build app | |
uses: ./.github/actions/node-yarn | |
- name: Lint | |
run: yarn lint | |
shell: bash | |
- name: Validate Openapi Specs | |
run: | | |
npx oval validate -p openapi/index.yaml | |
npx oval validate -p openapi/index_external.yaml | |
shell: bash | |
- name: Unit Tests | |
run: | | |
yarn generate | |
yarn test:coverage | |
shell: bash | |
integration_test_ff_none: | |
name: Run integration tests with FF_TYPE=none | |
timeout-minutes: 10 # temp fix | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
- name: Build app | |
uses: ./.github/actions/node-yarn | |
- name: Start Functions | |
run: | | |
cd __integrations__ | |
sed -i 's/FF_TYPE=.*/FF_TYPE=none/g' environments/env.base | |
cp environments/env.base environments/.env | |
yarn install --frozen-lockfile | |
yarn start | |
shell: bash | |
- name: Run Integration Tests | |
run: | | |
cd __integrations__ | |
yarn install --frozen-lockfile | |
docker exec fn-service-messages-testagent yarn test | |
shell: bash | |
integration_test_ff_prod: | |
name: Run integration tests with FF_TYPE=prod | |
timeout-minutes: 10 # temp fix | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 | |
- name: Build app | |
uses: ./.github/actions/node-yarn | |
- name: Start Functions | |
run: | | |
cd __integrations__ | |
sed -i 's/FF_TYPE=.*/FF_TYPE=prod/g' environments/env.base | |
cp environments/env.base environments/.env | |
yarn install --frozen-lockfile | |
yarn start | |
shell: bash | |
- name: Run Integration Tests | |
run: | | |
cd __integrations__ | |
yarn install --frozen-lockfile | |
docker exec fn-service-messages-testagent yarn test | |
shell: bash |