attempting to add some caching and speed up the delay

pull/3066/head
Patrick Burns 2024-04-07 20:16:12 -05:00
rodzic 08c5e4420f
commit 485c21a1eb
1 zmienionych plików z 24 dodań i 5 usunięć

Wyświetl plik

@ -7,20 +7,39 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache Cypress
uses: actions/cache@v2
with:
path: ~/.cache/Cypress
key: cypress-${{ hashFiles('package-lock.json') }}
restore-keys: |
cypress-
- name: Install Cypress
run: npm install cypress
- name: Cache .env
uses: actions/cache@v2
with:
path: .env
key: .env-${{ hashFiles('.env.sample') }}
restore-keys: |
.env-
- name: Setup .env
run: cp .env.sample .env
run: |
if [ ! -f .env ]; then
cp .env.sample .env
fi
- name: Build Docker services
run: docker-compose up -d
- name: Wait for services to start
run: sleep 10
run: sleep 3
- name: Populate dxcc_entities table
run: curl "http://localhost/index.php/update/dxcc"
- name: Install Cypress
run: npm install cypress
- name: Run Cypress tests
run: npx cypress run