Skip to content

Commit bcdd194

Browse files
committed
testing stuff
1 parent 6494f73 commit bcdd194

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/deploy.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Deploy to GitHub Pages
33
on:
44
push:
55
branches:
6-
- main
6+
- webring-test
77
# Review gh actions docs if you want to further define triggers, paths, etc
88
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
99

@@ -20,6 +20,9 @@ jobs:
2020
node-version: 18
2121
cache: npm
2222

23+
- name: test thing
24+
run: node gen-webring-routes.js
25+
2326
- name: Install dependencies
2427
run: npm ci
2528
- name: Build website

gen-webring-routes.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import fs from "fs";
2+
3+
function makeRoute() {
4+
fs.appendFileSync('./static/test.html', 'Hello world!');
5+
}
6+
7+
makeRoute();

0 commit comments

Comments
 (0)