Skip to content

Commit

Permalink
Merge pull request #4 from decentraland/chore/upgrade-dependencies
Browse files Browse the repository at this point in the history
chore: upgrade dependencies
  • Loading branch information
2fd committed Sep 14, 2023
2 parents cfd546d + f862b0b commit 5797153
Show file tree
Hide file tree
Showing 5 changed files with 1,997 additions and 8,222 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ 12, 14, 16 ]
node-version: [ 14, 16, 18, 20 ]

name: Test(Node ${{ matrix.node-version }} on ${{ matrix.os }})

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand All @@ -41,10 +41,10 @@ jobs:
needs: test

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: node.js 16
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
Expand All @@ -54,7 +54,7 @@ jobs:
run: npm ci

- name: linters
uses: wearerequired/lint-action@v1
uses: wearerequired/lint-action@v2
with:
prettier: true
prettier_extensions: ts,js,json,md
Expand All @@ -64,7 +64,7 @@ jobs:
run: npm test -- --coverage

- name: coveralls
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/testing_alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- next
- chore/*
- feat/*
- fix/*

Expand All @@ -12,17 +13,17 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ 12, 14, 16 ]
node-version: [ 14, 16, 18, 20 ]

name: Test(Node ${{ matrix.node-version }} on ${{ matrix.os }})

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,5 @@ dist
lib/

# Identity file
identity.json
identity.json
.DS_Store

0 comments on commit 5797153

Please sign in to comment.