Skip to content

Build(deps): bump i18next from 23.7.13 to 23.11.0 #1591

Build(deps): bump i18next from 23.7.13 to 23.11.0

Build(deps): bump i18next from 23.7.13 to 23.11.0 #1591

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
cache: yarn
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Prettier
run: yarn prettify
- name: Tests
run: |
yarn test:cli
yarn test
- name: Build
run: yarn build
- name: Coverage
run: yarn coverage
- uses: codecov/codecov-action@v4
with:
name: node-${{ matrix.node-version }}
fail_ci_if_error: false