Skip to content

change on

change on #3

Workflow file for this run

name: CI
on:
push:
jobs:
build-and-test:
name: build & test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js, PNPM, and install dependencies
working-directory: ./typescript
uses: ./.github/actions/pnpm-install

Check failure on line 16 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 16, Col: 15): Unexpected value 'uses' .github/workflows/ci.yml (Line: 14, Col: 15): Required property is missing: run
- name: Build all
working-directory: ./typescript
run: pnpm build
- name: Test all
working-directory: ./typescript
run: pnpm test