mirror of
https://github.com/standardnotes/app
synced 2026-01-16 19:04:58 -05:00
* chore: re-enable flaky tests * chore: re-enable vault tests in ci * chore: add missing dep * chore: fix building web on PR * chore: add sleep to allow deleting account to propagate
111 lines
3.3 KiB
YAML
111 lines
3.3 KiB
YAML
name: SNJS PR — E2E Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'packages/api/**'
|
|
- 'packages/encryption/**'
|
|
- 'packages/features/**'
|
|
- 'packages/filepicker/**'
|
|
- 'packages/files/**'
|
|
- 'packages/models/**'
|
|
- 'packages/responses/**'
|
|
- 'packages/services/**'
|
|
- 'packages/sncrypto-common/**'
|
|
- 'packages/sncrypto-web/**'
|
|
- 'packages/snjs/**'
|
|
- 'packages/utils/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.CI_PAT_TOKEN }}
|
|
fetch-depth: 0
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
registry-url: 'https://registry.npmjs.org'
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
- name: Install dependencies
|
|
run: yarn install --immutable
|
|
- name: Build
|
|
run: yarn build:web
|
|
- name: ESLint
|
|
run: yarn lint
|
|
- name: Test
|
|
run: yarn test
|
|
|
|
build-docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.CI_PAT_TOKEN }}
|
|
fetch-depth: 0
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
registry-url: 'https://registry.npmjs.org'
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
- name: Install dependencies
|
|
run: yarn install --immutable
|
|
- name: Build
|
|
run: yarn build:snjs
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
- name: Publish SNJS Docker image for E2E testing
|
|
run: |
|
|
yarn docker build @standardnotes/snjs -t standardnotes/snjs:${{ github.sha }}
|
|
docker push standardnotes/snjs:${{ github.sha }}
|
|
docker tag standardnotes/snjs:${{ github.sha }} standardnotes/snjs:test
|
|
docker push standardnotes/snjs:test
|
|
|
|
e2e-base:
|
|
name: E2E Base Test Suite
|
|
needs: build-docker
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run E2E test suite
|
|
uses: convictional/trigger-workflow-and-wait@master
|
|
with:
|
|
owner: standardnotes
|
|
repo: server
|
|
github_token: ${{ secrets.CI_PAT_TOKEN }}
|
|
workflow_file_name: e2e-test-suite.yml
|
|
wait_interval: 30
|
|
client_payload: '{"snjs_image_tag": "${{ github.sha }}", "suite": "base", "author": "${{ github.actor }}", "ref_name": "app:${{ github.ref }}"}'
|
|
propagate_failure: true
|
|
trigger_workflow: true
|
|
wait_workflow: true
|
|
|
|
e2e-vaults:
|
|
name: E2E Vaults Test Suite
|
|
needs: build-docker
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run E2E vaults test suite
|
|
uses: convictional/trigger-workflow-and-wait@master
|
|
with:
|
|
owner: standardnotes
|
|
repo: server
|
|
github_token: ${{ secrets.CI_PAT_TOKEN }}
|
|
workflow_file_name: e2e-test-suite.yml
|
|
wait_interval: 30
|
|
client_payload: '{"snjs_image_tag": "${{ github.sha }}", "suite": "vaults", "author": "${{ github.actor }}", "ref_name": "app:${{ github.ref }}"}'
|
|
propagate_failure: true
|
|
trigger_workflow: true
|
|
wait_workflow: true
|