Skip to content

Merge pull request #171 from visual-framework/Issue-2023 #11

Merge pull request #171 from visual-framework/Issue-2023

Merge pull request #171 from visual-framework/Issue-2023 #11

Workflow file for this run

name: Deploy and build content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: install and test
run: |
npm install -g yarn
npm install -g gulp
yarn install
gulp build # to do: we should make this run by `npm test`
env:
CI: true
- name: Configure Pages
uses: actions/configure-pages@v4
- name: Deploy to GH Pages 🚀
uses: actions/deploy-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: public