Skip to content

Commit

Permalink
* Adding pr-check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tzakrajs committed Aug 20, 2024
1 parent ab71c2e commit bbda074
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: pr-check

on:
pull_request_target:
branches:
- master
- 'releases/*'

jobs:
build_and_test:
runs-on: ubuntu-latest

steps:
# Setup Bun
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

# Checkout the repository
- name: Checkout Repository
uses: actions/checkout@v4

# Install dependencies
- name: Install Dependencies
run: bun install

# Build the site
- name: Build Site
run: bunx @11ty/eleventy

0 comments on commit bbda074

Please sign in to comment.