Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

chore(deps): update dependency next-translate to v2 #3765

chore(deps): update dependency next-translate to v2

chore(deps): update dependency next-translate to v2 #3765

Workflow file for this run

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
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