Skip to content

Commit

Permalink
Updated push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
antriksh-9 authored Feb 7, 2024
1 parent d7c79b3 commit 8ae28a6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,29 @@ jobs:
fail_ci_if_error: false
name: '${{env.CODECOV_UNIQUE_NAME}}'

Check-Schema:
name: Check Schema
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Restore node_modules from cache
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: |
~/.npm
node_modules
key: ${{ runner.os }}-node-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ env.cache-name }}-
${{ runner.os }}-node-
${{ runner.os }}-
Generate-Documentation:
name: Generate Documentation
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8ae28a6

Please sign in to comment.