fix: use peerDependencies instead of dependencies #86du3xkgh #91
Workflow file for this run
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: | |
ci: | |
if: contains(github.event.head_commit.message, 'skip ci') == false | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: 👉🏼 Checkout | |
uses: actions/checkout@v2 | |
- name: 📦️ Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: 🚚 Install dependencies | |
run: yarn install | |
- name: 👷 Build packages | |
run: yarn build | |
- name: 🧐 Lint Files | |
run: yarn lint | |
- name: 🧾 Run Unit Tests | |
run: yarn test |