Skip to content

Update devDependencies #235

Update devDependencies

Update devDependencies #235

Workflow file for this run

name: Analyze Code
on: [push]
jobs:
analyze-code:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
-
uses: docker/build-push-action@v3
with:
load: true
target: ci
tags: sgrb_ci:latest
cache-from: type=gha
# type=gha の設定のときは、GitHub Actions の Cache へ image を保存する。
# Cache はリポジトリに対して 10GB まで保存できる。超えた分は退去されるとのことで、具体的な処理は不明。
# ファイルが壊れて cache の restore が失敗することは、もしかしたらあるかもしれない。
#
# GitHub Actions: Cache の公式ドキュメント)
# https://docs.github.com/ja/actions/using-workflows/caching-dependencies-to-speed-up-workflows
cache-to: type=gha,mode=max
- run: docker image ls
- run: make docker/ci/analyze-code