Skip to content

Commit 09fc4d7

Browse files
Copilotaspiers
andcommitted
Remove changeset and add style.yml CI workflow
Co-authored-by: aspiers <100738+aspiers@users.noreply.github.com>
1 parent 47b7316 commit 09fc4d7

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

.changeset/add-lexicon-style-checker.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/style.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Style Guide Check
2+
3+
on:
4+
push:
5+
branches: [main, develop]
6+
pull_request:
7+
branches: [main, develop]
8+
9+
jobs:
10+
style:
11+
runs-on: blacksmith-4vcpu-ubuntu-2404
12+
13+
steps:
14+
- uses: actions/checkout@v6
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v6
18+
with:
19+
node-version: "20"
20+
cache: "npm"
21+
22+
- name: Install dependencies
23+
run: npm ci
24+
25+
- name: Run lexicon style guide checker
26+
run: npm run check-lexicon-style

0 commit comments

Comments
 (0)