Skip to content

Update PLI for 2025-26 #61

Update PLI for 2025-26

Update PLI for 2025-26 #61

Workflow file for this run

name: Website CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.85.0'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
- name: Install NPM packages
run: |
npm install
npm install gulp-cli
node node_modules/gulp/bin/gulp build
- name: Build
run: hugo --minify
- name: HTMLTest
if: false # TODO
run: |
curl -Lk https://github.com/wjdp/htmltest/releases/download/v0.4.1/htmltest-linux -o ~/htmltest && chmod +x "$_"
~/htmltest
- name: Deploy
if: ${{ github.ref == 'refs/heads/master' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}