File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## Description
2+
3+ Provide a detailed description of the feature you are adding or changes that are being made in this pull request.
4+
5+ ## Related Issue
6+
7+ If applicable, link to the issue that this pull request addresses.
8+
9+ ## Testing Instructions
10+
11+ Provide step-by-step instructions on how to test the changes made in this pull request.
12+
13+ ## Screenshots or Recordings
14+
15+ Provide any relevant screenshots or recordings to help understand the changes.
16+
17+ ## Checklist
18+
19+ - [ ] Have you added a note to the changelog?
20+ - [ ] Have you ensured the code passes all tests using the included plugin-check?
21+ - [ ] Have you checked for code style and linting errors?
Original file line number Diff line number Diff line change 1+ name : Build Test
2+
3+ on :
4+ pull_request :
5+ branches : [main]
6+
7+ jobs :
8+ build :
9+ name : Install dependencies and test build
10+ timeout-minutes : 10
11+ runs-on : ' ubuntu-latest'
12+
13+ env :
14+ CI_JOB_NUMBER : 1
15+
16+ steps :
17+ - name : Checkout
18+ uses : actions/checkout@v3
19+
20+ - name : Setup Node.js
21+ uses : actions/setup-node@v3
22+ with :
23+ node-version : ' 20.10.0'
24+
25+ - name : 📦 Install
26+ run : npm install
27+
28+ - name : 🔧 Build
29+ run : npm run build
You can’t perform that action at this time.
0 commit comments