Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
edosrecki committed Nov 4, 2022
1 parent b886097 commit 85c7d9d
Show file tree
Hide file tree
Showing 9 changed files with 1,224 additions and 809 deletions.
4 changes: 0 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
Expand Down
21 changes: 5 additions & 16 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Read .nvmrc
id: nvmrc
run: echo "::set-output name=node::$(cat .nvmrc)"

- name: Use Node.js ${{ steps.nvmrc.outputs.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ steps.nvmrc.outputs.node }}

- name: Read npm cache
uses: actions/cache@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
path: ~/.npm
key: node-cache-${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
node-cache-${{ runner.os }}-npm-
node-version-file: .nvmrc
cache: npm

- name: Install packages
run: npm ci
Expand Down
21 changes: 5 additions & 16 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Read .nvmrc
id: nvmrc
run: echo "::set-output name=node::$(cat .nvmrc)"

- name: Use Node.js ${{ steps.nvmrc.outputs.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ steps.nvmrc.outputs.node }}

- name: Read npm cache
uses: actions/cache@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
path: ~/.npm
key: node-cache-${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
node-cache-${{ runner.os }}-npm-
node-version-file: .nvmrc
cache: npm

- name: Install packages
run: npm ci
Expand Down
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@
bin
src
tools

3 changes: 1 addition & 2 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
16.13.2

18.12.0
Loading

0 comments on commit 85c7d9d

Please sign in to comment.