Bump drizzle-kit from 0.19.13 to 0.20.1 #35
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: Review Workflow | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check: | |
name: Basic Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
- run: npm install --also=dev | |
- run: npm run lint | |
- run: npm run typecheck | |
- run: npm run build | |
test: | |
name: Tests | |
runs-on: | |
labels: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
- run: npm install --also=dev | |
- run: npm run test | |
- run: npm run test:e2e |