Skip to content

Added external link to link-list example (#329) #163

Added external link to link-list example (#329)

Added external link to link-list example (#329) #163

name: build-deploy-production
on:
push:
branches:
- master
jobs:
build-production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm run prod:build
- uses: actions/upload-artifact@v3
with:
name: dist
path: |
dist
deploy-production:
needs: build-production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/download-artifact@v3
with:
name: dist
path: |
dist
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
visual-test:
needs: deploy-production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install
- run: npm run starterkit:build