Change loading wait timer from 200ms to 300ms #18
Workflow file for this run
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: Testing | |
on: push | |
jobs: | |
test: | |
name: Tests passes | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇ Git checkout | |
uses: actions/checkout@v3 | |
- name: 💾 Install modules | |
run: npm ci | |
- name: 🧪 Testing | |
run: npm test | |
env: | |
VITE_API_URL: ${{secrets.VITE_API_URL}} |