support v1.8.0 #15
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: 'Lint, Unit and E2E Tests' | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install SDK dependencies | |
run: yarn install --frozen-lockfile | |
- name: Check eslint rules | |
run: yarn run lint-ci | |
- name: Build SDK | |
run: yarn run build | |
- name: Run unit tests | |
run: yarn run test | |
- name: Install e2e dependencies | |
working-directory: ./test/sdk-package-test | |
run: yarn install --frozen-lockfile | |
- name: Build e2e | |
working-directory: ./test/sdk-package-test | |
run: yarn run build | |
- name: Run e2e tests | |
working-directory: ./test/sdk-package-test | |
run: yarn run test:e2e |