diff options
-rw-r--r-- | .github/workflows/create_sentry_release.yml | 3 | ||||
-rw-r--r-- | .github/workflows/test_and_lint.yml | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/create_sentry_release.yml b/.github/workflows/create_sentry_release.yml index 0ff22f7..daf3b6b 100644 --- a/.github/workflows/create_sentry_release.yml +++ b/.github/workflows/create_sentry_release.yml @@ -12,6 +12,9 @@ jobs: if: ${{ github.actor != 'dependabot[bot]' }} steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Install dependencies run: yarn install --prod diff --git a/.github/workflows/test_and_lint.yml b/.github/workflows/test_and_lint.yml index 360da3f..dab0e4a 100644 --- a/.github/workflows/test_and_lint.yml +++ b/.github/workflows/test_and_lint.yml @@ -11,6 +11,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Install dependencies run: yarn install --prod @@ -21,6 +24,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Install dependencies run: yarn install @@ -31,6 +37,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Install dependencies run: yarn install |