Skip to content

build(deps-dev): bump ws from 8.16.0 to 8.17.1 #173

build(deps-dev): bump ws from 8.16.0 to 8.17.1

build(deps-dev): bump ws from 8.16.0 to 8.17.1 #173

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
Check:
runs-on: ubuntu-latest
steps:
- name: Download repository
uses: actions/checkout@v4
- name: NPM Cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Read .nvmrc
run: echo "name=NVMRC::$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install libs
run: |
npm ci
- name: Run lint
run: |
npm run lint
- name: Run test
run: |
npm run test:unit
- name: Build
run: |
npm run build