Skip to content

Commit 4383e74

Browse files
committed
catch up
1 parent 9e25626 commit 4383e74

File tree

5 files changed

+512
-19
lines changed

5 files changed

+512
-19
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
version: 2
22
updates:
3-
- package-ecosystem: npm
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
open-pull-requests-limit: 10
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10
8+
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"

.github/workflows/cicd.yml renamed to .github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ env:
1212
jobs:
1313
build:
1414
name: build & push to labctl repo
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v5
1919
- name: Use Node.js ${{ env.NODEVER }}
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v5
2121
with:
2222
node-version: ${{ env.NODEVER }}
2323
cache: "npm"

.pre-commit-config.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,24 @@ repos:
99
- --skip
1010
- "package-lock.json,*.mod"
1111
exclude: ^src/utils/icon_codepoints.ts$
12+
13+
- repo: local
14+
hooks:
15+
- id: eslint
16+
name: eslint
17+
entry: npm run lint
18+
language: node
19+
pass_filenames: false
20+
21+
- id: prettier
22+
name: prettier
23+
entry: npm run format
24+
language: node
25+
pass_filenames: false
26+
27+
- id: vitest
28+
name: vitest
29+
entry: npm run test
30+
language: node
31+
pass_filenames: false
32+

0 commit comments

Comments
 (0)