fix: Event binding in XML Templates #35
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: End-To-End Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
e2e: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js 20.11.0 | |
uses: actions/[email protected] | |
with: | |
node-version: 20.11.0 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run e2e tests | |
run: npm run e2e |