Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Update README.md

Update README.md #2

Workflow file for this run

name: CI/CD
on:
push:
branches:
- master
jobs:
ci-cd:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
version: 10.x
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
env:
CI: true
run: npm run test:ci
- name: Build and deploy
uses: JamesIves/github-pages-deploy-action@master
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: dist
BUILD_SCRIPT: npm install && npm run build