updated workflows #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
jobs: | ||
build: | ||
run-on: ubuntu-latest | ||
Check failure on line 9 in .github/workflows/main.yml GitHub Actions / CIInvalid workflow file
|
||
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 |