Skip to content

Commit

Permalink
fix(effect): add peer for @effect/schema
Browse files Browse the repository at this point in the history
Closes #180
Closes #181
  • Loading branch information
keyz authored and JamieMason committed Dec 26, 2023
1 parent eabbfb8 commit 4212fcd
Show file tree
Hide file tree
Showing 9 changed files with 9,899 additions and 16,846 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,21 @@ jobs:
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
cache: npm
cache: 'pnpm'
node-version: ${{ matrix.node-version }}

- name: Install
run: npm ci
run: pnpm install

- name: Build
run: npm run build
run: pnpm run build
env:
FORCE_COLOR: 3
TERM: xterm-256color
Expand All @@ -36,20 +39,20 @@ jobs:

- name: Lint
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20.x'
run: npm run lint
run: pnpm run lint
env:
FORCE_COLOR: 3
TERM: xterm-256color

- name: Test
run: npm run test
run: pnpm run test
env:
FORCE_COLOR: 3
TERM: xterm-256color

- name: Code Climate
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20.x'
uses: paambaati/codeclimate-action@v3.0.0
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/deploy-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: npm ci
run: pnpm install
- name: Build website
run: npm run build
run: pnpm run build

# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/test-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: npm ci
run: pnpm install
- name: Test build website
run: npm run build
run: pnpm run build
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
strict-peer-dependencies=true
Loading

0 comments on commit 4212fcd

Please sign in to comment.