Skip to content

Commit

Permalink
fixed up package import in app_test
Browse files Browse the repository at this point in the history
  • Loading branch information
plasticviking committed Mar 11, 2024
1 parent 90948b6 commit c3b4f79
Show file tree
Hide file tree
Showing 3 changed files with 838 additions and 18 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/app_test.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,27 @@
name: State tests for web app
on: [push, pull_request]

jobs:
jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.11.0'

- name: Install sharedAPI
working-directory: ./api
run: npm install --legacy-peer-deps

- name: Install app
working-directory: ./appv2
run: npm install

run: |
cd sharedAPI
npm install --legacy-peer-deps
cd ../appv2
npm install
- name: Test
working-directory: ./appv2
env:
MOBILE: false
JEEPSQLITE: 'FALSE'
Expand All @@ -34,6 +33,8 @@ jobs:
PUBLIC_MAP_URL: ''
CONFIGURATION_SOURCE: 'Provided'
OPENSHIFT_BUILD_COMMIT: ''
SOURCE_GIT_COMMIT: $GITHUB_SHA
run: npm run test

SOURCE_GIT_COMMIT: $GITHUB_SHA
run: |
cd appv2
npm run test
Loading

0 comments on commit c3b4f79

Please sign in to comment.