Skip to content

Commit

Permalink
chore: update pnpm to version 9
Browse files Browse the repository at this point in the history
  • Loading branch information
maalni committed May 3, 2024
1 parent 85d6b54 commit 5181a9d
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 3,333 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/check-data-quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json

name: 'Check data quality'
on:
push:
branches:
- main
pull_request:
branches:
- '**'

jobs:
check-eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/Iron
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 9
run_install: true
- name: Run ESLint
run: pnpm lint
check-schemas:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/Iron
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 9
run_install: true
- name: Check JSON Schemas
continue-on-error: true
run: |
pnpm install -g ajv-cli
node scripts/ValidateSchemas.js
26 changes: 0 additions & 26 deletions .github/workflows/naming-convention.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/schemas-validation.yml

This file was deleted.

Loading

0 comments on commit 5181a9d

Please sign in to comment.