Skip to content

Simple commit

Simple commit #2

Workflow file for this run

name: Release
on:
pull_request:
types: [opened, synchronize]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: ESLINT
run: pnpm lint
build:
name: Pull Request
runs-on: ubuntu-latest
steps:

Check failure on line 19 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull-request.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Setup pnpm
run: sudo npm i -g [email protected]
- name: Install Dependencies
run: pnpm install
-name: Build
run: pnpm build
-name: Vitest
run: pnpm run -C packages/sdk test