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

Commit

Permalink
revert back to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian-dev28 committed Oct 10, 2023
1 parent d7f396b commit 730cf43
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Format MDX and Lint

on:
pull_request:
branches:
branches:
- main

workflow_dispatch:
Expand All @@ -18,15 +18,15 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
node-version: "18"
cache: "yarn"
cache-dependency-path: "**/yarn.lock"

- name: Install App Dependencies
run: npm install
run: yarn

- name: Check MDX
run: npm run check:mdx
run: yarn check:mdx

- name: Build app
run: npm run build
run: yarn build

0 comments on commit 730cf43

Please sign in to comment.