-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove jest config and update package dependencies
Deleted the `jest.config.ts` file from the client and updated `package-lock.json` to reflect version changes and the addition of new dependencies. This also includes several specific esbuild binaries for different platforms.
- Loading branch information
SquirrelDevelopper
committed
Oct 11, 2024
1 parent
2e0dbbb
commit 7f67f31
Showing
7 changed files
with
3,082 additions
and
47 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | ||
|
||
name: Tests - Client | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
paths: | ||
- 'client/**' | ||
pull_request: | ||
branches: [ "master" ] | ||
paths: | ||
- 'client/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [22.3.x] | ||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
cache-dependency-path: ${{github.workspace}}/client/package-lock.json | ||
- name: Install | ||
working-directory: ./shared-lib | ||
run: npm ci | ||
- name: Build | ||
working-directory: ./shared-lib | ||
run: npm run build --if-present | ||
- name: Install | ||
working-directory: ./client | ||
run: npm ci | ||
- name: Build | ||
working-directory: ./client | ||
run: npm run build --if-present | ||
- name: Test | ||
working-directory: ./client | ||
run: npm test |
2 changes: 1 addition & 1 deletion
2
.github/workflows/molecule.yml → .github/workflows/test-playbooks.yml
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# .github/workflows/molecule.yml | ||
|
||
name: Molecule Tests | ||
name: Test - Playbooks | ||
|
||
on: | ||
push: | ||
|
6 changes: 5 additions & 1 deletion
6
.github/workflows/node.js.yml → .github/workflows/test-server.yml
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.