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

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian-dev28 committed Oct 9, 2023
1 parent ca39df1 commit 32f37aa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
node-version: '18'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

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

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

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

0 comments on commit 32f37aa

Please sign in to comment.