Skip to content

Commit

Permalink
Fix syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromcunha committed Jun 24, 2024
1 parent c5f0b67 commit fe35daa
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ESLINT
run: pnpm lint
run: pnpm lint
build:
name: Pull Request
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v3

- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Setup pnpm
run: sudo npm i -g [email protected]
run: sudo npm i -g [email protected]

- name: Install Dependencies
run: pnpm install
run: pnpm install

-name: Build
run: pnpm build
run: pnpm build

-name: Vitest
run: pnpm run -C packages/sdk test
run: pnpm run -C packages/sdk test

0 comments on commit fe35daa

Please sign in to comment.