chore(deps): update dependency sass-loader to v11.1.1 #972
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: Continuous Integration | |
on: [push] | |
jobs: | |
tests: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ubuntu-20.04] | |
php-versions: ["7.4"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Repository lampy | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
repository: koromerzhin/lampy | |
path: lampy | |
- name: Cache npm packages | |
id: npm-cache | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
apps/bin | |
apps/vendor | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/apps/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Install npm dependencies | |
if: steps.npm-cache.outputs.cache-hit != 'true' | |
run: make node_modules | |
- name: 'SET BDD' | |
run: make bddset | |
- name: 'Launch Lampy' | |
run: make lampy | |
- name: 'Image pull' | |
run: make docker image-pull | |
- name: 'Build containers' | |
run: make docker deploy | |
- name: 'sleep' | |
run: make sleep 60 | |
- name: 'docker ls' | |
run: make docker ls |