This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
build(deps): bump follow-redirects from 1.15.2 to 1.15.5 #3796
Workflow file for this run
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: (GitHub Actions) Node.js CI | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
# Enable tmate debugging of manually-triggered workflows if the input option was provided | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
timeout-minutes: 15 | |
with: | |
sudo: true | |
limit-access-to-actor: true | |
- name: $ yarn install | |
run: | | |
yarn install --frozen-lockfile | |
- name: ESLint | |
run: | | |
yarn lint | |
- name: Jest によるテストを実行する | |
run: | | |
npx jest | |
- name: Codecov の結果をアップロードする | |
run: | | |
echo 'TODO: Codecov の結果をアップロードする' | |
# uses: codecov/codecov-action@v2 | |
# with: | |
# directory: ./.coverage |