Skip to content

build(deps-dev): bump express from 4.18.2 to 4.19.2 #21

build(deps-dev): bump express from 4.18.2 to 4.19.2

build(deps-dev): bump express from 4.18.2 to 4.19.2 #21

Workflow file for this run

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/action-setup@v2.2.2
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