Skip to content

Commit

Permalink
add CI build (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
BonusPlay authored Oct 19, 2024
1 parent b5326ec commit 38bed6a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Build and test"
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: Install dependencies
run: npm install

- name: Build
run: npx eleventy
env:
FLAG: "DUMMY"

0 comments on commit 38bed6a

Please sign in to comment.