Skip to content

I18next action

I18next action #184

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "yarn"
- name: Install Dependencies
run: yarn install --immutable
- name: Run Linter (eslint)
run: yarn lint
- name: Run Tests
run: yarn test
- name: Prettier Check
run: yarn prettier --check .