Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build on PR
on:
# This workflow will only run for pull requests targeting the main branch
pull_request:
branches:
- main

jobs:
build:
name: Build Project
runs-on: ubuntu-latest
steps:
# Remember we have to check out the repository first!
- name: Checkout repository
uses: actions/checkout@v5

# This step installs the dependencies
- name: Install dependencies
run: npm ci

- name: Build
run: npm run build
7 changes: 0 additions & 7 deletions src/scripts/build.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@



🧨 I'm a bug!!! Please remove me!!! 🧨



import fs from "node:fs";
import path from "node:path";
import { fileURLToPath } from "node:url";
Expand Down