Skip to content

fix(deps): update dependency rimraf to v5 #1152

fix(deps): update dependency rimraf to v5

fix(deps): update dependency rimraf to v5 #1152

Workflow file for this run

name: Run Lint and Tests
on:
push:
branches-ignore:
- master
- alpha
- beta
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Lint Files
run: npm run lint:check
- name: Check File Formatting
run: npm run format:check
- name: Run Tests
run: npm run test:ci