Skip to content

chore(deps-dev): Bump fsevents from 1.2.9 to 1.2.13 #37

chore(deps-dev): Bump fsevents from 1.2.9 to 1.2.13

chore(deps-dev): Bump fsevents from 1.2.9 to 1.2.13 #37

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install and test
run: |
npm ci
npm test
env:
CI: true
- name: Build
if: success() && github.ref == 'refs/heads/master'
run: |
npm run build
echo ${{ secrets.DOMAIN_NAME}} > dist/CNAME
- name: Deploy
if: success() && github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@v2
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./dist