Skip to content

npmのバージョン指定修正時にhato-botのnpmのバージョンも考慮する #10695

npmのバージョン指定修正時にhato-botのnpmのバージョンも考慮する

npmのバージョン指定修正時にhato-botのnpmのバージョンも考慮する #10695

---
name: pr-test-hato-bot
# pull_requestで何かあった時に起動する
on:
pull_request:
push:
branches:
- master
- develop
jobs:
# unittestを行う
# testが落ちたらチェックが落ちる
pr-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
submodules: "recursive"
- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version-file: .python-version
cache: pipenv
- name: Test
run: bash "${GITHUB_WORKSPACE}/scripts/pr_test_hato_bot/pr_test/test.sh"
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true