2 space tab package.json #91
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: "E2E tests: Bootstrap / apply" | |
on: push | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
bootstrap-apply: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Bootstrap Akinizer from script | |
run: curl -o- https://raw.githubusercontent.com/robatron/akinizer/$GITHUB_SHA/bootstrap.sh | AK_GIT_REF=$GITHUB_SHA bash | |
- name: Apply Akinizer configs | |
run: | | |
cd $HOME/opt/akinizer/examples | |
gulp | |
- name: Re-bootstrap non-destructively | |
run: curl -o- https://raw.githubusercontent.com/robatron/akinizer/$GITHUB_SHA/bootstrap.sh | AK_GIT_REF=$GITHUB_SHA bash | |
- name: Re-apply non-destructively | |
run: | | |
cd $HOME/opt/akinizer/examples | |
gulp | |
bootstrap-apply-alt-install-dir: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Bootstrap Akinizer from script | |
run: curl -o- https://raw.githubusercontent.com/robatron/akinizer/$GITHUB_SHA/bootstrap.sh | AK_GIT_REF=$GITHUB_SHA AK_INSTALL_ROOT=$HOME/custom/install/dir bash | |
- name: Apply Akinizer configs | |
run: | | |
cd $HOME/custom/install/dir/examples | |
gulp |