File tree 2 files changed +42
-1
lines changed
2 files changed +42
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Any Commit
2
+ on :
3
+ push :
4
+ branches :
5
+ - ' **'
6
+ tags :
7
+ - ' !**'
8
+
9
+ env :
10
+ PNPM_CACHE_FOLDER : .pnpm-store
11
+ HUSKY : 0 # Bypass husky commit hook for CI
12
+
13
+ permissions : {}
14
+
15
+ concurrency :
16
+ group : ${{ github.workflow }}-${{ github.event.number }}
17
+ cancel-in-progress : true
18
+
19
+ jobs :
20
+ build :
21
+ runs-on : ubuntu-latest
22
+ strategy :
23
+ matrix :
24
+ node-version : [20]
25
+ steps :
26
+ - name : Checkout code
27
+ uses : actions/checkout@v4
28
+
29
+ - run : corepack enable
30
+ - uses : actions/setup-node@v4
31
+ with :
32
+ node-version : ${{ matrix.node-version }}
33
+ cache : " pnpm"
34
+ - name : Install dependencies
35
+ run : pnpm install
36
+ - name : Build
37
+ run : pnpm build
38
+ - run : pnpx pkg-pr-new publish --compact --pnpm
Original file line number Diff line number Diff line change 6
6
"description" : " Opinionated ESLint configuration for Tres.js ecosystem" ,
7
7
"author" :
" Alvaro Saburido <[email protected] > (https://github.com/alvarosabu/)" ,
8
8
"license" : " MIT" ,
9
- "repository" : " tresjs/eslint-config" ,
9
+ "repository" : {
10
+ "type" : " git" ,
11
+ "url" : " git+https://github.com/Tresjs/eslint-config.git"
12
+ },
10
13
"keywords" : [
11
14
" eslint" ,
12
15
" eslint-config" ,
You can’t perform that action at this time.
0 commit comments