We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60f5583 commit ab2e88cCopy full SHA for ab2e88c
2 files changed
.editorconfig
@@ -16,3 +16,7 @@ max_line_length = 120
16
17
[{CODEOWNERS,Makefile}]
18
indent_style = tab
19
+
20
+[*.{yml,yaml}]
21
+indent_style = space
22
+indent_size = 2
.github/workflows/try-publish.yml
@@ -0,0 +1,26 @@
1
+name: Try publish to NPM
2
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ publish:
11
12
+ runs-on: ubuntu-latest
13
+ defaults:
14
+ run:
15
+ shell: bash
+ steps:
+ - uses: actions/checkout@v3
+ - name: Use the latest versiob of Node.js
+ uses: actions/setup-node@v3
+ with:
+ node-version: latest
23
+ - name: Init
24
+ run: make init
25
+ - name: Dry run
26
+ run: npm publish --dry-run
0 commit comments