Move eslint to peer deps #32
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: | |
paths: | |
- 'lib/**' | |
- 'tests/**' | |
pull_request: | |
jobs: | |
lint: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Install packages | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
- name: Run tests | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: lint | |
test: | |
name: Test rules | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Install packages | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
- name: Run tests | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: test |