build(deps): bump ejs from 3.1.8 to 3.1.10 #293
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: build | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
release: | |
branches: [main] | |
jobs: | |
checks: | |
if: github.event_name != 'release' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: Build | |
run: | | |
yarn install --frozen-lockfile | |
cd lib | |
yarn build | |
cd .. | |
# - name: Test | |
# run: | | |
# cd lib | |
# yarn test | |
- name: Build docs | |
run: | | |
cd doc | |
yarn build | |
cd .. | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v2 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
gh-release: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }} | |
- name: Release to GitHub Pages | |
env: | |
USE_SSH: true | |
GIT_USER: git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "sjwall" | |
yarn install --frozen-lockfile | |
cd doc | |
yarn deploy |