Skip to content

Chore(deps): Bump http-proxy-middleware from 2.0.6 to 2.0.7 #909

Chore(deps): Bump http-proxy-middleware from 2.0.6 to 2.0.7

Chore(deps): Bump http-proxy-middleware from 2.0.6 to 2.0.7 #909

Workflow file for this run

name: tests
on: [push]
jobs:
unit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install --production=false
- name: Run the tests
run: yarn test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
if: ${{ github.actor != 'dependabot[bot]' }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
snapshot:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install --production=false
- name: Build site
run: yarn build:test
env:
CCN_ENDPOINT: ${{ secrets.CCN_ENDPOINT }}
GRAPHQL_URL: ${{ secrets.GRAPHQL_URL }}
SENDGRID_API_KEY: ${{ secrets.SENDGRID_API_KEY }}
RO_ENDPOINT: ${{ secrets.RO_ENDPOINT }}
GATSBY_BUGSNAG_API_KEY: ${{ secrets.GATSBY_BUGSNAG_API_KEY }}
- name: Upload snapshots to Percy
run: yarn test:snapshot
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}