Skip to content

Commit

Permalink
[PBE-516] fix tests, bump dependencies (#555)
Browse files Browse the repository at this point in the history
* Updated CODEOWNERS, package.json export
* Test fixes.
* Lint fix.
* Updated github action
* Limit supported versions to current and previous Node LTS
* Cleanup
* Package updates
  • Loading branch information
xernobyl authored May 18, 2023
1 parent 3655d3e commit 8c20f11
Show file tree
Hide file tree
Showing 28 changed files with 7,096 additions and 6,107 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @arnautov-anton @MartinCupela
* @arnautov-anton @MartinCupela @xernobyl @JimmyPettersson85 @itsmeadi
5 changes: 3 additions & 2 deletions .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Sets up Node and Build SDK
inputs:
node-version:
required: false
default: '16'
default: '18'

runs:
using: 'composite'
Expand All @@ -13,6 +13,7 @@ runs:
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node-version }}

- name: Cache Dependencies
uses: actions/cache@v3
with:
Expand All @@ -21,5 +22,5 @@ runs:
restore-keys: ${{ runner.os }}-${{ inputs.node-version }}-modules-

- name: Install Dependencies & Build
run: yarn install --frozen-lockfile --ignore-engines
run: yarn install --immutable --ignore-engines
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14, 16]
node: [16, 18]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-node
Expand Down
Loading

0 comments on commit 8c20f11

Please sign in to comment.