chore(deps): update dependency webpack-dev-server to v5 #2937
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate Fastlane | |
uses: ashutoshgngwr/validate-fastlane-supply-metadata@v2 | |
with: | |
usePlayStoreLocales: true | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install app dependencies | |
run: npm ci | |
- name: Build Web | |
run: npm run build | |
- name: Run Web tests | |
run: npm t | |
- name: Capacitor update | |
run: npx cap update | |
- name: Capacitor copy | |
run: npx cap copy | |
- name: Cypress.io | |
uses: cypress-io/github-action@v6.7.2 | |
with: | |
start: npm start |