2024-01-26 22:56:26 +00:00
|
|
|
name: E2E Testing
|
|
|
|
|
|
|
|
on:
|
2024-01-26 23:00:20 +00:00
|
|
|
push
|
2024-01-26 22:56:26 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
2024-01-26 23:04:46 +00:00
|
|
|
node-version: 18
|
2024-01-26 22:56:26 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2024-01-26 23:01:44 +00:00
|
|
|
run: npm install
|
2024-01-26 22:56:26 +00:00
|
|
|
|
|
|
|
- name: Run e2e tests
|
|
|
|
run: npm run e2e
|