fix: upgrade multiple dependencies with Snyk #805
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: TestCafe tests | |
on: [push, pull_request] | |
jobs: | |
testcafe: | |
strategy: | |
matrix: | |
# --componentFolder=scheduler --quarantineMode=true, | |
ARGS: [ --componentFolder=dataGrid --quarantineMode=true, --componentFolder=editors, --componentFolder=navigation ] | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Get sources | |
uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '15' | |
# - name: Restore npm cache | |
# uses: actions/cache@v2 | |
# with: | |
# path: ./node_modules | |
# key: ${{ runner.os }}-node-modules-v4-${{ hashFiles('**/package.json') }} | |
# restore-keys: | | |
# ${{ runner.os }}-node-modules-v4 | |
- name: Run npm install | |
run: npm install --no-package-lock --no-audit --no-fund | |
- name: Build | |
env: | |
DEVEXTREME_TEST_CI: "true" | |
run: npm run build | |
- name: Run TestCafe tests | |
env: | |
ARGS: ${{ matrix.ARGS }} | |
run: | | |
all_args="--concurrency 2 --browsers=chrome:headless ${ARGS}" | |
echo "$all_args" | |
npm run test-testcafe -- $all_args | |
- name: Copy screenshots artifacts | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: screenshots | |
path: ${{ github.workspace }}/testing/testcafe/artifacts/**/* | |
if-no-files-found: ignore |