Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Bump @types/node from 20.3.1 to 22.5.5 #1241

Bump @types/node from 20.3.1 to 22.5.5

Bump @types/node from 20.3.1 to 22.5.5 #1241

Workflow file for this run

name: コンパイルチェック
on:
pull_request:
push:
branches:
- develop
jobs:
tsc:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore Cache
uses: actions/cache@v3
id: node_modules_cache_id
env:
cache-name: cache-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}-v8
- run: echo '${{ toJSON(steps.node_modules_cache_id.outputs) }}'
- name: Run yarn install
if: ${{ steps.node_modules_cache_id.outputs.cache-hit != 'true' }}
run: docker compose -f docker-compose.ci.yml run --rm app yarn install --frozen-lockfile
- name: Run tsccheck
run: docker compose -f docker-compose.ci.yml run --rm app yarn run tsccheck