release: ngx-tiptap v11.0.0 #217
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: Tests | |
env: | |
NODE_VERSION: 20 | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
permissions: | |
contents: read | |
jobs: | |
test-unit: | |
name: Karma unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Using node v${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{env.NODE_VERSION}} | |
cache: npm | |
- name: NPM Install | |
run: npm ci | |
env: | |
CYPRESS_INSTALL_BINARY: 0 | |
- name: Build | |
run: npm run build | |
env: | |
NODE_ENV: production | |
- name: Test | |
run: npm run test:lib | |
test-e2e: | |
name: E2E Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Using node v${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{env.NODE_VERSION}} | |
cache: npm | |
- name: NPM Install | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Run Cypress tests | |
uses: cypress-io/github-action@v6 | |
with: | |
start: npm run demo -- --host 127.0.0.1 # see https://github.com/cypress-io/github-action/issues/634 | |
wait-on: 'http://127.0.0.1:4200' | |
browser: chrome |