Skip to content

Commit fbb459c

Browse files
committed
Base automation for ValeStyles
for #40 but the action has to exist in default branch to test it 🤦
1 parent f0a9909 commit fbb459c

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Vale npm tests
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- ValeStyles/**
7+
8+
jobs:
9+
npm-test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: checkout repo
13+
uses: actions/checkout@v4
14+
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: 22
18+
19+
- name: npm test
20+
working-directory: ./ValeStyles
21+
run: |
22+
npm ci
23+
npm test

0 commit comments

Comments
 (0)