Skip to content

Commit

Permalink
node.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkeksz committed Dec 7, 2023
1 parent 571e800 commit 7ccaa02
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Install Node.js ${{ matrix.node-version }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
Expand All @@ -40,17 +41,15 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Check for formatting
run: npm run format:check
- name: Code Quality Checks
run: |
npm run format:check
npm run lint:check
- name: Check for linting
run: npm run lint:check

- name: GraphQL generate schema
- name: Generate GraphQL schema
run: npm run graphql:generate-schema

- name: Run tests
run: npm test

- name: Runt e2e tests
run: npm run test:e2e
- name: Execute Tests
run: |
npm test
npm run test:e2e

0 comments on commit 7ccaa02

Please sign in to comment.