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
21 changes: 21 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Description

Provide a detailed description of the feature you are adding or changes that are being made in this pull request.

## Related Issue

If applicable, link to the issue that this pull request addresses.

## Testing Instructions

Provide step-by-step instructions on how to test the changes made in this pull request.

## Screenshots or Recordings

Provide any relevant screenshots or recordings to help understand the changes.

## Checklist

- [ ] Have you added a note to the changelog?
- [ ] Have you ensured the code passes all tests using the included plugin-check?
- [ ] Have you checked for code style and linting errors?
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Test

on:
pull_request:
branches: [main]

jobs:
build:
name: Install dependencies and test build
timeout-minutes: 10
runs-on: 'ubuntu-latest'

env:
CI_JOB_NUMBER: 1

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.10.0'

- name: 📦 Install
run: npm install

- name: 🔧 Build
run: npm run build