Skip to content

updated workflows

updated workflows #1

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
build:
run-on: ubuntu-latest

Check failure on line 9 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 9, Col: 5): Unexpected value 'run-on' .github/workflows/main.yml (Line: 9, Col: 5): Required property is missing: runs-on
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
working-directory: packages/react
- run: pnpm run lint && pnpm run build
working-directory: packages/react