Skip to content

Commit

Permalink
ci: use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Aug 24, 2022
1 parent 8113829 commit 69c9547
Show file tree
Hide file tree
Showing 6 changed files with 4,639 additions and 4,692 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: test

on:
push:
paths-ignore:
- 'docs/**'
pull_request:
paths-ignore:
- 'docs/**'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: 7.9.0
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'pnpm'

- run: pnpm install
- run: pnpm run lint
- run: pnpm run test:unit
- run: pnpm run build
- run: pnpm run size

- uses: codecov/codecov-action@v2
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
strict-peer-dependencies=false
29 changes: 0 additions & 29 deletions circle.yml

This file was deleted.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "mande",
"version": "2.0.3",
"description": "Some awesome description",
"packageManager": "[email protected]",
"main": "index.js",
"module": "dist/mande.mjs",
"unpkg": "dist/mande.iife.js",
Expand Down
Loading

0 comments on commit 69c9547

Please sign in to comment.