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