-
-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
30 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,9 @@ name: Test Suite | |
on: [push, pull_request] | ||
|
||
jobs: | ||
nui_preformatting_tests: | ||
name: Tests for NUI | ||
nui__and_game_scripts: | ||
name: Tests for NUI and Game scripts | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: apps/phone | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -18,37 +15,13 @@ jobs: | |
with: | ||
version: latest | ||
|
||
- name: Install dependencies NUI | ||
- name: Install dependencis | ||
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 | ||
|