1234567891011121314151617181920212223242526272829303132333435363738394041 |
- name: End-to-end tests
- on:
- push:
- branches: [ main ]
- pull_request_target:
- # We want all branches so we configure types to be the GH default again
- types: [ opened, synchronize, reopened ]
- jobs:
- e2e:
- name: Browser tests
- runs-on: ubuntu-latest
- steps:
- - name: Checkout sources
- uses: actions/checkout@v2
- with:
- # Necessary for yarn version plugin
- # https://yarnpkg.com/features/release-workflow#commit-history
- fetch-depth: 0
- - name: Cache npm dependencies
- id: cache-npm-libraries
- uses: actions/cache@v2
- with:
- path: .yarn/cache/*
- key: ${{ runner.os }}
- - name: Install Node.js
- uses: actions/setup-node@v2
- with:
- node-version: 16.x
- - name: Install dependencies
- run: corepack yarn install --immutable
- - name: Build Uppy packages
- run: corepack yarn build
- - name: Run end-to-end browser tests
- run: corepack yarn run e2e:ci
- env:
- COMPANION_UNSPLASH_KEY: ${{secrets.COMPANION_UNSPLASH_KEY}}
- COMPANION_UNSPLASH_SECRET: ${{secrets.COMPANION_UNSPLASH_SECRET}}
- VITE_TRANSLOADIT_KEY: ${{secrets.TRANSLOADIT_KEY}}
- VITE_TRANSLOADIT_TEMPLATE: ${{secrets.TRANSLOADIT_TEMPLATE}}
- VITE_TRANSLOADIT_SERVICE_URL: ${{secrets.TRANSLOADIT_SERVICE_URL}}
|