Skip to content

Chore(deps): Bump the npm-dependencies group with 10 updates (#684) #897

Chore(deps): Bump the npm-dependencies group with 10 updates (#684)

Chore(deps): Bump the npm-dependencies group with 10 updates (#684) #897

Workflow file for this run

name: 'Test: All Tests'
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
push:
branches:
- main
workflow_dispatch:
env:
NODE_VERSION: 18
jobs:
testAll:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Set up PNPM
uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Test modifier and preset data
run: pnpm testData
- name: Lint with ESLint
run: pnpm eslint
- name: Format with prettier
run: pnpm prettierCheck