chore(deps): update pnpm to v9.15.3 #1855
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
env: | |
TZ: Asia/Tokyo | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/[email protected] | |
- uses: pnpm/action-setup@v2 | |
- name: Setup node env 🏗 | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- name: Install dependencies 👨🏻💻 | |
run: pnpm install --frozen-lockfile | |
- name: Run eslint 👀 | |
uses: reviewdog/action-eslint@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
eslint_flags: '. --ext .js,.ts,.vue --ignore-path .eslintignore' | |
level: error | |
- name: Prepare build | |
run: echo "{ \"consumer_key\":\"\", \"consumer_secret\":\"\"}" > apikey-release.json | |
- name: Test | |
run: pnpm test | |
- name: Build | |
run: pnpm build |