Update to node 20.x #32
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: ci | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Build | |
run: | | |
npm install | |
npm run build | |
- name: Deploy to gh-pages | |
if: ${{ github.event_name == 'push' }} | |
run: | | |
git config --global user.name thegecko | |
git config --global user.email [email protected] | |
git add --force dist types docs | |
git stash save | |
git checkout gh-pages | |
git merge master --no-commit -X theirs | |
git checkout stash -- . | |
git commit --allow-empty --message "Automatic Deployment" | |
git push |