mirror of
https://github.com/codex-team/editor.js
synced 2026-03-16 15:45:47 +01:00
* fix(inline-tools): inline tools shortcuts now works in read-only mode * use ubuntu-20.04 instead of latest
21 lines
432 B
YAML
21 lines
432 B
YAML
name: Cypress
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
run-tests:
|
|
strategy:
|
|
matrix:
|
|
browser: [firefox, chrome, edge]
|
|
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- uses: actions/checkout@v4
|
|
- uses: cypress-io/github-action@v6
|
|
with:
|
|
config: video=false
|
|
browser: ${{ matrix.browser }}
|
|
build: yarn build:test
|