This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
Bump express from 4.19.2 to 4.21.0 (#122) #44
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: Deploy | |
on: | |
push: | |
branches: | |
- main | |
env: | |
FORCE_COLOR: 2 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 15 | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Build | |
run: yarn build | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: test/demo/build |