Added 2.4 style z-covers with hidden cable routing (#872) #3891
Workflow file for this run
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: Voron CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
env: | |
GIT_BRANCH: ${{ github.head_ref }} | |
GIT_PR_BASE_BRANCH: ${{ github.base_ref }} | |
GIT_PULL_REQUEST: ${{ github.event.number }} | |
steps: | |
- name: Checkout Actions | |
uses: actions/checkout@v3 | |
- name: Cache Folder | |
id: cache-folder | |
uses: actions/cache@v3 | |
with: | |
path: ci_cache | |
key: voron-ci | |
# - name: Set ENV variable | |
# run: echo "::set-env name=GIT_BRANCH::${GIT_BRANCH:-$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')}" | |
- name: Print Travis ENV vars | |
run: | | |
echo "GIT_BRANCH: ${GIT_BRANCH}" | |
echo "GIT_PULL_REQUEST: ${GIT_PULL_REQUEST}" | |
- name: Setup NPM | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install NPM scripts | |
run: | | |
npm init -y | |
npm install --global remark-cli remark-validate-links | |
- name: Execute CI | |
run: | | |
git clone https://github.com/VoronDesign/GithubScripts.git .github_scripts | |
/bin/bash ./.github_scripts/workflows/ci-build.sh |