Skip to content

Commit

Permalink
Added : commitId of both the releases
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaP700 committed Jan 30, 2025
1 parent 586a5b8 commit e6ddc00
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/pr-testing-with-test-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,14 @@ name: Test using test project
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
paths:
- 'package.json'
- 'package-lock.json'
- 'apps/**'
- 'packages/**'
- '.github/workflows/**'
- '!**/*.md'
- '!docs/**'

jobs:
changes:
runs-on: ubuntu-latest
outputs:
should_test: ${{ steps.filter.outputs.changes }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 https://github.com/actions/checkout/releases/tag/v3
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 https://github.com/dorny/paths-filter/releases/tag/v3.0.2
id: filter
with:
Expand All @@ -43,8 +35,7 @@ jobs:
node: ["18", "20"]
steps:
- name: Checkout repository
uses: actions/checkout@v3

uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
- name: Determine if tests should run
id: should_run
if: >
Expand All @@ -63,7 +54,6 @@ jobs:
)
run: echo "shouldrun=true" >> $GITHUB_OUTPUT
shell: bash

- if: steps.should_run.outputs.shouldrun == 'true'
name: Run test
run: NODE_IMAGE_TAG=${{ matrix.node }} docker compose up --abort-on-container-exit --remove-orphans --force-recreate
Expand Down

0 comments on commit e6ddc00

Please sign in to comment.