chore(deps): update httpd docker tag to v2.4.60 #223
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: ci | |
on: [push] | |
jobs: | |
tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Repository lampy | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
ref: 'v2.0' | |
repository: koromerzhin/lampy | |
path: lampy | |
- name: Install npm dependencies | |
run: npm install | |
- name: 'set .env' | |
run: 'cp .env.example .env' | |
- name: 'SET BDD' | |
run: npm run bdd:mariadb | |
- name: 'Launch Lampy' | |
run: cd lampy && npm run exec | |
- name: 'Image pull' | |
run: npm run docker:getpull-image | |
- name: 'create apps' | |
run: npm run create:apps | |
- name: 'Build containers' | |
run: npm run docker:deploy | |
- name: 'Waiting' | |
run: npm run docker:waiting | |
- name: linter readme.md | |
run: npm run lint:markdown | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
- name: Archive screenshots | |
uses: actions/upload-artifact@v3 | |
with: | |
name: screenshot | |
path: cypress/ |