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

Update dependency @types/ramda to v0.29.12 - autoclosed #77

Update dependency @types/ramda to v0.29.12 - autoclosed

Update dependency @types/ramda to v0.29.12 - autoclosed #77

Workflow file for this run

---
on:
pull_request:
paths:
- 'client/**/*.ts'
- 'client/**/*.tsx'
- 'client/**/*.js'
- 'client/**/*.json'
- 'client/**/*.css'
- 'client/**/*.svg'
workflow_dispatch:
jobs:
quality-checks:
runs-on: 'ubuntu-latest'
defaults:
run:
working-directory: 'client'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: 'Install dependencies'
run: 'npm ci'
- name: 'Code formatting'
run: 'npm run check:format'
- name: 'Lint'
run: 'npm run lint'
- name: 'Build'
run: 'npm run build'
...