Skip to content

Commit

Permalink
ci: test restore
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron de las Alas committed Nov 2, 2023
1 parent 368f977 commit 2faa7a4
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
${{ steps.setup-chrome.outputs.chrome-path }} --version
- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -75,22 +75,31 @@ jobs:
- name: Store Lint Artifacts
uses: actions/upload-artifact@v3
with:
name: android-builds
name: test-output
path: ./test-results/*
test-unit:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "test-unit"
- name: Restore Cache
uses: actions/cache/restore@v3
with:
path: |
./node_modules
key: key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
build:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "build"
test-integration:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "test-integration"

# - name: Setup & Test
Expand Down

0 comments on commit 2faa7a4

Please sign in to comment.