banana_split/.github/workflows/e2e-test.yaml
Pavel Rybalko cbdfc7e08b
add end-to-end UI tests. Resolves #30
* add 2e2 tests

* fix prettier

* add workflow

* prettify

* update vue/cli-service

* update readme
2021-11-17 11:21:00 +07:00

26 lines
495 B
YAML

name: End to end test
on: push
jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
run: echo NVMRC=`cat .nvmrc` >> $GITHUB_ENV
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ env.NVMRC }}
cache: 'yarn'
- run: yarn install
- name: Install operating system dependencies
run: npx playwright install-deps
- run: npm run test:e2e