fix(deps): update dependency quasar to v2 #477
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: ${{ matrix.operating-system }} | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ubuntu-22.04] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Repository lampy | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
ref: 'v2.0' | |
repository: koromerzhin/lampy | |
path: lampy | |
- name: Install npm dependencies | |
run: npm install | |
- name: 'set .env' | |
run: 'cp back/.env.dist back/.env' | |
- name: 'set .env' | |
run: 'cp .env.example .env' | |
- name: 'Launch Lampy' | |
run: cd lampy && npm run exec | |
- name: 'Image pull' | |
run: npm run docker:getpull-image | |
- name: 'Build containers' | |
run: npm run docker:deploy | |
- name: 'Waiting' | |
run: npm run docker:waiting | |
- name: linter readme.md | |
run: npm run lint:markdown |