This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
Update babel monorepo #808
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: Continuous Integration | |
on: [push] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout ⬇️ | |
uses: actions/checkout@v4 | |
- name: Install ⚙️ | |
run: npm clean-install | |
- name: Check format 👮 | |
run: npm run format:check | |
- name: Lint 👮 | |
run: npm run lint | |
- name: Build 🏭 | |
run: npm run build | |
- name: Run end-to-end tests 🔍 | |
uses: cypress-io/github-action@v4 | |
with: | |
start: npm run serve |