Merge pull request #22 from openziti/bump-node-sdk #122
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: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Node Version | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Build | |
run: | | |
npm install -g @vercel/[email protected] | |
npm install | |
npm run build | |
# - name: Push Dist | |
# if: github.ref != 'refs/heads/main' | |
# uses: EndBug/add-and-commit@v7 | |
# with: | |
# author_name: github-actions | |
# author_email: 41898282+github-actions[bot]@users.noreply.github.com | |
# add: ./dist | |
# pull_strategy: NO-PULL | |
# push: true |