Skip to content

chore(deps-dev): bump lerna from 3.22.1 to 7.3.1 #575

chore(deps-dev): bump lerna from 3.22.1 to 7.3.1

chore(deps-dev): bump lerna from 3.22.1 to 7.3.1 #575

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: run-e2e-tests
on: push
jobs:
# e2e tests on api blueprint and swagger
test-e2e-apib:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: npx lerna exec --scope="dredd" yarn e2e:apib
test-e2e-openapi2:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: npx lerna exec --scope="dredd" yarn e2e:openapi2