Skip to content

Bump @types/node from 20.14.2 to 20.14.5 #4930

Bump @types/node from 20.14.2 to 20.14.5

Bump @types/node from 20.14.2 to 20.14.5 #4930

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- uses: pnpm/action-setup@v2.0.1
with:
version: 8.6.12
run_install: |
args: [--lockfile-only]
- name: Install
run: |
pnpm install
- name: Lint
run: |
pnpm run lint
- name: Typecheck
run: |
pnpm run typecheck
- name: Test
env:
CI: true
run: |
pnpm test -- --ci --coverage
- name: Report
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
env:
COVERALLS_GIT_BRANCH: ${{ github.ref }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
pnpm run coveralls
- name: Build
run: |
pnpm run build
- name: Deploy
if: github.ref == 'refs/heads/master' && github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
GOOGLE_REFRESH_TOKEN: ${{ secrets.GOOGLE_REFRESH_TOKEN }}
run: |
pnpm run release