build(deps-dev): bump express from 4.18.2 to 4.19.2 #21
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: Build, Test, Lint for Main | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
# - windows-latest | |
node-version: [14.x] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
fetch-depth: 2 | |
- uses: pnpm/[email protected] | |
with: | |
version: 7.4.0 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
# - name: Build Types | |
# run: pnpm types | |
- name: Test | |
run: pnpm test | |
- name: Lint | |
if: matrix.os == 'ubuntu-latest' | |
run: pnpm lint |