Skip to content

Add Nightcrawler and Magneto. #101

Add Nightcrawler and Magneto.

Add Nightcrawler and Magneto. #101

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: configure vue
run: |
echo "module.exports = {publicPath: '/marvel-lcg-randomizer/'};" > vue.config.js
- name: NPM CI
run: npm ci
- name: Build
run: npm run build
- name: GH Pages deploy
uses: Cecilapp/[email protected]
env:
EMAIL: [email protected] # must be a verified email
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }} # https://github.com/settings/tokens
BUILD_DIR: dist/ # "_site/" by default