Fix: resolved npm ci issues by regenerating lock file and updating de… #4
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: 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 |