Skip to content

Commit 3e4e40c

Browse files
authored
Merge pull request #3 from troychaplin/workflows
add: git workflows
2 parents e835f1b + 6fcaf1f commit 3e4e40c

2 files changed

Lines changed: 50 additions & 0 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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?

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

0 commit comments

Comments
 (0)