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