Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

fix(deps): update all minor dependencies (minor) #1155

fix(deps): update all minor dependencies (minor)

fix(deps): update all minor dependencies (minor) #1155

Workflow file for this run

name: Lint Project
on:
pull_request:
branches: [main]
jobs:
check-prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm ci
- run: npm run prettier:check
check-eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm ci
- run: npm run lint:js
check-typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm ci
- run: npm run typescript