build(deps): bump debug from 4.2.0 to 4.3.4 in /integration/pre_apf_project #4
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
# This workflow will do a clean install of node dependencies, build the source code and run the E2E tests. | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: E2E Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- run: yarn install | |
- run: yarn install --cwd integration/project | |
- run: cd integration/project && yarn ngcc | |
- run: scripts/build.sh package.json | |
- run: xvfb-run -a yarn run test:e2e | |
if: runner.os == 'Linux' | |
- run: yarn run test:e2e | |
if: runner.os != 'Linux' |