chore(deps): update dependency eslint-config-next to v15.0.3 (#457) #1331
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: 復刊ドットコムの復刊投票コメントを取得する | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: yarn | |
- name: $ yarn install | |
run: | | |
yarn install --frozen-lockfile | |
- name: ESLint | |
run: | | |
npx eslint | |
- name: ビルドする | |
run: | | |
yarn build | |
- name: CLI の挙動を確認する | |
run: | | |
./fukkan_comments.js --version | |
./fukkan_comments.js --help | |
- name: CLI を実行する | |
run: | | |
npx playwright install --with-deps | |
./fukkan_comments.js -b 65317 -p 2 -o output/fukkan_comments_by_github_actions.csv | |
- name: 生成された CSV ファイルなどをアーカイブする | |
uses: actions/upload-artifact@v4 | |
with: | |
name: created-csv-file | |
path: | | |
output |