deps(apps): bump write-excel-file from 3.0.5 to 3.0.6 #3551
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: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| cypress-ci: | |
| name: Cypress CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout for testing | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| ref: main | |
| persist-credentials: false | |
| - name: Use Node.js LTS version | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f | |
| with: | |
| node-version: lts/Krypton | |
| - name: Install Dependencies | |
| run: npm ci && npm i -D @rollup/rollup-linux-x64-gnu | |
| - name: Cypress run testing | |
| uses: cypress-io/github-action@bc22e01685c56e89e7813fd8e26f33dc47f87e15 | |
| with: | |
| command-prefix: '--' | |
| install: false | |
| build: npm run build | |
| start: npm run preview | |
| browser: chrome | |
| record: true | |
| env: | |
| CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CYPRESS_PROJECT_ID: vwwffz | |
| VITE_FIREBASE_APIKEY: ${{ secrets.VITE_FIREBASE_APIKEY }} | |
| VITE_FIREBASE_APPID: ${{ secrets.VITE_FIREBASE_APPID }} | |
| VITE_FIREBASE_AUTHDOMAIN: ${{ secrets.VITE_FIREBASE_AUTHDOMAIN }} | |
| VITE_FIREBASE_MEASUREMENTID: ${{ secrets.VITE_FIREBASE_MEASUREMENTID }} | |
| VITE_FIREBASE_MESSAGINGSENDERID: ${{ secrets.VITE_FIREBASE_MESSAGINGSENDERID }} | |
| VITE_FIREBASE_PROJECTID: ${{ vars.VITE_FIREBASE_PROJECTID }} |