bump pnpm #49
This file contains hidden or 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: | |
# - main | |
# - master | |
# pull_request: | |
# branches: | |
# - main | |
# - master | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [14] | |
steps: | |
- name: Checkout π | |
uses: actions/checkout@master | |
- name: Setup node env π | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies π¨π»βπ» | |
run: pnpm install | |
- name: Run linter π | |
run: yarn lint | |
- name: Run tests π§ͺ | |
run: yarn test |