Fix s3-utils test configuration #1031
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: lint | |
on: [push, workflow_dispatch] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "18" | |
- run: npm install -g npm@9.5.0 | |
- run: npm install --include dev | |
- run: npm install -ws | |
- run: npm run build -ws | |
- run: npm run lint -ws |