Skip to content

Commit 13d18b7

Browse files
committed
chore: update some packages
1 parent cb454cd commit 13d18b7

File tree

7 files changed

+1113
-773
lines changed

7 files changed

+1113
-773
lines changed

.github/workflows/analysis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ jobs:
1111
name: SonarCloud
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
17+
- name: Set up Node.js
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: '16.x'
1721
- name: Install dependencies
1822
run: npm install
1923
- name: Test and coverage
@@ -22,4 +26,4 @@ jobs:
2226
uses: SonarSource/sonarcloud-github-action@master
2327
env:
2428
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
25-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
29+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup .npmrc file to publish to npm
3030
uses: actions/setup-node@v1
3131
with:
32-
node-version: '14.x'
32+
node-version: '16.x'
3333
registry-url: 'https://registry.npmjs.org'
3434
- name: Install modules
3535
run: npm install
@@ -42,7 +42,7 @@ jobs:
4242
- name: Setup .npmrc file to publish to GitHub Packages
4343
uses: actions/setup-node@v1
4444
with:
45-
node-version: '14.x'
45+
node-version: '16.x'
4646
registry-url: 'https://npm.pkg.github.com'
4747
scope: '@nasiruddinml'
4848
- run: npm run addscope

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
os:
2929
- ubuntu-latest
3030
- windows-latest
31-
node: [12.x, 14.x, 16.x]
31+
node: [16.x, 18.x]
3232

3333
steps:
3434
- uses: actions/checkout@v2

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,6 @@ dist
114114
.yarn/build-state.yml
115115
.yarn/install-state.gz
116116
.pnp.*
117+
118+
# os related
119+
.DS_Store

0 commit comments

Comments
 (0)