Skip to content

express: bump eslint-config-joenn from 0.1.2 to 0.2.5 #17

express: bump eslint-config-joenn from 0.1.2 to 0.2.5

express: bump eslint-config-joenn from 0.1.2 to 0.2.5 #17

Workflow file for this run

name: Client
on:
pull_request:
paths:
- client/**
push:
branches: [master]
paths:
- client/**
jobs:
eslint:
name: EsLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
working-directory: ./client
- name: Run esLint
run: npm run lint
working-directory: ./client
typescript:
name: TypeScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
working-directory: ./client
- name: Run TypeScript
run: npm run tsc
working-directory: ./client