Skip to content

Commit

Permalink
Add github action to make sure webring builds (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwbailey committed Sep 24, 2023
2 parents 79a1538 + 42b0cd3 commit c8c4604
Show file tree
Hide file tree
Showing 3 changed files with 4,085 additions and 6,408 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Main

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
name: Build webring
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'

- name: Install NPM dependencies
run: npm ci

- name: Start build
run: npm run build

0 comments on commit c8c4604

Please sign in to comment.