This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
Bump deps; resolve webpack issue #100
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: Test | |
on: | |
pull_request: | |
jobs: | |
release: | |
name: Run linter and tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16] | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@master | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Bootstrap lerna | |
run: npm run bootstrap | |
- name: Run tests | |
run: npx lerna run test |