zarro 1.164.0 → 1.165.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 2
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ max_line_length = 100
9
+ trim_trailing_whitespace = true
10
+ insert_final_newline = true
@@ -0,0 +1 @@
1
+ * text=auto eol=lf
@@ -0,0 +1,26 @@
1
+ name: release-please
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ jobs:
7
+ release-please:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: GoogleCloudPlatform/release-please-action@v2
11
+ id: release
12
+ with:
13
+ release-type: node
14
+ package-name: 'fetch-github-release'
15
+ - uses: actions/checkout@v2
16
+ if: ${{ steps.release.outputs.release_created }}
17
+ - uses: actions/setup-node@v2
18
+ with:
19
+ node-version: '*'
20
+ check-latest: true
21
+ registry-url: 'https://registry.npmjs.org'
22
+ if: ${{ steps.release.outputs.release_created }}
23
+ - run: npm publish
24
+ if: ${{ steps.release.outputs.release_created }}
25
+ env:
26
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
@@ -0,0 +1,26 @@
1
+ name: Test
2
+ on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
6
+ branches: [main]
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ timeout-minutes: 15
11
+ steps:
12
+ - name: Git checkout
13
+ uses: actions/checkout@v2
14
+ - name: Setup Node.js
15
+ uses: actions/setup-node@v2
16
+ with:
17
+ node-version: 16
18
+ check-latest: true
19
+ - name: Install dependencies
20
+ run: npm ci
21
+ - name: Linting
22
+ run: npm run format:ci
23
+ - name: Building
24
+ run: npm run build
25
+ - name: Tests
26
+ run: npm run test
@@ -0,0 +1,7 @@
1
+ {
2
+ "semi": false,
3
+ "singleQuote": true,
4
+ "printWidth": 100,
5
+ "proseWrap": "always",
6
+ "trailingComma": "all"
7
+ }
@@ -0,0 +1,8 @@
1
+ # Changelog
2
+
3
+ ## 1.0.0 (2021-08-21)
4
+
5
+
6
+ ### Features
7
+
8
+ * init ([a0f486a](https://www.github.com/valerybugakov/fetch-github-release/commit/a0f486a9a9843e262027851a805c559fdbeaedfb))