Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasohCHOM committed Nov 26, 2024
1 parent 643f95e commit 32d4ca0
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/website-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,24 @@ on:
branches: [main]

jobs:
builds_and_checks:
runs_on: ubuntu-latest
website_check:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v3
with:
- node-version: 20.x
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"

- name: Install Dependencies
run: npm ci
- name: Install Dependencies
run: npm ci

- name: Run lint
run: npm run lint
- name: Run lint
run: npm run lint

- name: Run format check
run: npx prettier --check .
- name: Run format check
run: npx prettier --check .

0 comments on commit 32d4ca0

Please sign in to comment.