Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
willybrauner committed Nov 13, 2023
1 parent 91aa854 commit adb3f0e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: CI
name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
version: 8

- name: Install dependencies
run: pnpm install
Expand All @@ -31,3 +31,6 @@ jobs:

- name: test
run: pnpm run test

- name: size
run: pnpm run size
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ tsconfig-build.tsbuildinfo
out*
.husky
.DS_Store
.turbo
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,10 @@ clear()
pnpm i
```

Start dev server for specific example
Start dev server for all examples

```shell
pnpm run dev:basic
pnpm run dev
```


Expand Down

0 comments on commit adb3f0e

Please sign in to comment.