2024-01-25 06:15:00 +00:00
|
|
|
name: CI
|
2024-01-24 17:39:50 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-01-25 06:49:53 +00:00
|
|
|
branches:
|
|
|
|
- gh-pages
|
2024-01-25 06:29:36 +00:00
|
|
|
|
|
|
|
workflow_dispatch:
|
2024-01-24 17:39:50 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-01-25 06:29:36 +00:00
|
|
|
build:
|
2024-01-24 17:39:50 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-01-25 06:29:36 +00:00
|
|
|
|
2024-01-24 17:39:50 +00:00
|
|
|
steps:
|
2024-01-25 07:06:50 +00:00
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 20
|
|
|
|
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v3
|