Skip to content

Implement end-to-end tests during pull requests and before releasing a new version of the plugin #1

Implement end-to-end tests during pull requests and before releasing a new version of the plugin

Implement end-to-end tests during pull requests and before releasing a new version of the plugin #1

Workflow file for this run

name: Test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
~/.cache
key: dependencies-v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --frozen-lockfile
- name: E2E tests
run: yarn test:all