forked from robinweser/fela
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move to turbo monorepo setup * remove website build step * fix license, typos, names, builds * fix umd build * v12.0.0-rc.0 * use pnpm * fix examples * fix action * try to fix * another try * newer node version * newer version * without cache * fix lint * cache pnpm store * fix workflow * improve selector rehydration closes robinweser#885 * fix builds * v12.0.0-rc.1 * remove cache step again * fix action * update readme * try fix * fix order * keep 11.7.0 docs * fix toc * only run action once per PR / master push * update benchmark * more perf improvements * more perf things * perf things * use plugins * fix tests * fix builds * cleanup * simply rendering with 1 flat cache * fix stuff * v12.0.0-rc.2 * add benchmarks to website * use stylis only * push benchmarks * update readme and cleanup naming pattern * fix plugins * reduce nav item size * v12.0.0-y.0 * v12.0.0-rc.3.0
- Loading branch information
1 parent
1cf4320
commit 02d4851
Showing
605 changed files
with
96,856 additions
and
21,781 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,42 @@ | ||
on: [push, pull_request] | ||
name: Test | ||
name: Test & Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
paths: | ||
- 'packages/**' | ||
pull_request: | ||
branches: | ||
- 'master' | ||
paths: | ||
- 'packages/**' | ||
|
||
jobs: | ||
test: | ||
name: Ubuntu on node ${{ matrix.node }} | ||
name: Ubuntu on Node ${{ matrix.node }} | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
matrix: | ||
os: [ubuntu-18.04] | ||
node: [12, 13] | ||
node: [16] | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: yarn | ||
- run: yarn run check | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
||
- name: Cache pnpm modules | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.pnpm-store | ||
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}- | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 6.28.0 | ||
run_install: true | ||
- run: pnpm run check |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.