chore(deps): bump i18next from 20.6.1 to 23.4.4 in /apps/phone #3469
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: Test Suite | |
on: [push, pull_request] | |
jobs: | |
nui_preformatting_tests: | |
name: Tests for NUI | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: apps/phone | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Install dependencies NUI | |
run: pnpm i --frozen-lockfile | |
- name: Check build status | |
run: pnpm build | |
env: | |
CI: true | |
game_scripts_test: | |
name: Tests for Game Scripts | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: apps/game | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Install dependencies NUI | |
run: pnpm i --frozen-lockfile | |
- name: Check build status | |
run: pnpm build | |
env: | |
CI: true | |
lint: | |
name: Lint Lua scripts | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: apps/game | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Lint | |
uses: GoatG33k/fivem-lua-lint-action@v1 |