Skip to content

fixed date april

fixed date april #15

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- "develop"
jobs:
build-test-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set-up Node
uses: actions/setup-node@v1
with:
node-version: "14.x"
- run: npm install
- run: npm run build
- name: Deploy
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: master
build_dir: build
fqdn: coderdojo-delft.nl
dry_run: false
verbose: true
keep_history: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}