Skip to content

Commit

Permalink
fix: update dependencies (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
maratsh authored Sep 17, 2024
1 parent fba623a commit 621e7db
Show file tree
Hide file tree
Showing 4 changed files with 2,602 additions and 2,314 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Npm run test
- name: Lint
run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -37,6 +40,24 @@ jobs:
run: npm audit --level medium

- run: npm ci

- run: npm run test
name: "test"
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install dependencies
run: npm ci

- run: npm run lint
- name: Build
run: npm run build
Loading

0 comments on commit 621e7db

Please sign in to comment.