Skip to content

Commit

Permalink
chore: Format
Browse files Browse the repository at this point in the history
  • Loading branch information
xhad committed Dec 12, 2023
1 parent 58b4255 commit f3ee222
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,18 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "yarn"
node-version: 18
cache: "npm"
cache-dependency-path: ./package-lock.json

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install --frozen-lockfile

- name: Run codegen
run: yarn codegen
run: npm run codegen

- name: Run build
run: yarn build:local
run: npm run build:local

- name: Run tests
run: yarn test
run: npm test

0 comments on commit f3ee222

Please sign in to comment.