[解決] Error: Dependencies lock file is not found in /home/runner/work/some. Supported file patterns: package-lock.json,yarn.lock

「解決] Error: Dependencies lock file is not found in /home/runner/work/some. Supported file patterns: package-lock.json,yarn.lock

ciがpakcage.lock.jsonを見つけてくれないとき。

結論

runコマンドにcdでpackage.lock.jsonがあるところに移動する

こんなリポジトリの時に起こります

repogitory root
├── hogeProject
│ └── package.json
│ ├── src
│ └── someconfig
├── .github
│ ├── workflows

Run actions/setup-node@v3
Found in cache @ /opt/hostedtoolcache/node/14.19.2/x64
/opt/hostedtoolcache/node/14.19.2/x64/bin/npm config get cache
/home/runner/.npm
Error: Dependencies lock file is not found in /home/runner/work/mikiwame/mikiwame. Supported file patterns: package-lock.json,yarn.lock

ymlファイルはこんな感じ

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: mikiwame test

on:
  push:
    branches:
      - main
      - feature/**
      - kenmori-**
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: [14.x]
        # See supported Node.js release schedule at https://nodejs.org/en/about/releases/

    steps:
    - uses: actions/checkout@v3
    - name: Use Node.js ${{ matrix.node-version }}
      uses: actions/setup-node@v3
      with:
        node-version: ${{ matrix.node-version }}
    - name: move
      run: |
        cd ./toyourfolder // here
        npm ci
        npm run test