Skip to content

Commit

Permalink
feat: use new refine telemetry api (#346)
Browse files Browse the repository at this point in the history
* feat: use refine telemetry api

* chore: remove reviewer lottery

* chore: update node version matrix

* 1.16.1
  • Loading branch information
BatuhanW authored Jun 8, 2023
1 parent 9a41f1d commit b4fe1b1
Show file tree
Hide file tree
Showing 9 changed files with 163 additions and 282 deletions.
5 changes: 2 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@
{
"root": ["./"],
"alias": {
"@Helper": "./src/Helper",
"@Helper": "./src/Helper"
}
}
],
"transform-inline-environment-variables"
]
]
}
9 changes: 0 additions & 9 deletions .github/reviewer-lottery.yml

This file was deleted.

26 changes: 12 additions & 14 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,21 @@ on: push

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [12.x, 14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run lint
npm test
npm run build:cli
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run lint
npm test
npm run build:cli
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- run: |
npm install
npm test
SEGMENT_KEY=${{ secrets.SEGMENT_KEY }} npm run build:cli
npm run build:cli
npm pack
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
13 changes: 0 additions & 13 deletions .github/workflows/reviewer-lottery.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"singleQuote": false,
"printWidth": 80,
"tabWidth": 4,
"organizeImportsSkipDestructiveCodeActions": true
"organizeImportsSkipDestructiveCodeActions": true,
"overrides": [
{ "files": ["*.yml", "*.yaml"], "options": { "tabWidth": 2 } }
]
}
Loading

0 comments on commit b4fe1b1

Please sign in to comment.