Skip to content

Commit

Permalink
addressing issue #28 No CI/CD Configuration (Add GitHub Actions workf…
Browse files Browse the repository at this point in the history
…low for E2E tests) and issue #29 Missing Linting Configuration
  • Loading branch information
Sokuya committed Dec 2, 2024
1 parent ee65a04 commit f79c058
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: E2E Tests

on:
push:
branches:
- main
jobs:
test:
runs-on: macos-13 # Run on the macOS Ventura for iOS testing

steps:
- uses: actions/checkout@v2
name: Check out the code

- name: Install dependencies
run: npm ci # Install dependencies using 'npm ci' for CI/CD

- name: Run tests
run: npm test # Run test script defined in package.json

0 comments on commit f79c058

Please sign in to comment.