From 9ed3bddc0dea14179d6a0fa982e69d156413da39 Mon Sep 17 00:00:00 2001 From: Mathias Klippinge Date: Thu, 21 Dec 2023 16:12:10 +0100 Subject: [PATCH] Upgrade bun 1.0.18 --- .github/actions/setup-smoke-test/action.yml | 11 +---------- .github/workflows/smoke.js.yml | 16 ++-------------- 2 files changed, 3 insertions(+), 24 deletions(-) diff --git a/.github/actions/setup-smoke-test/action.yml b/.github/actions/setup-smoke-test/action.yml index e6363395..bf5f1259 100644 --- a/.github/actions/setup-smoke-test/action.yml +++ b/.github/actions/setup-smoke-test/action.yml @@ -9,13 +9,11 @@ inputs: bun-version: description: Bun version required: false - default: '1.0.15' + default: '1.0.18' runs: using: composite steps: - # - name: Self Hosted Runner Post Job Cleanup Action - # uses: TooMuch4U/actions-clean@v2.1 - name: Install node ${{ inputs.node-version }} uses: actions/setup-node@v3 with: @@ -26,15 +24,9 @@ runs: with: bun-version: ${{ inputs.bun-version }} - - name: Show folder content (3) - run: | - ls -la ./ - shell: bash - - name: Install deps in mappersmith/ run: | cd mappersmith - yarn config yarn install --immutable --immutable-cache shell: bash @@ -47,7 +39,6 @@ runs: - name: Install deps in mappersmith-consumer/ run: | cd mappersmith-consumer - yarn config yarn install --immutable --immutable-cache shell: bash diff --git a/.github/workflows/smoke.js.yml b/.github/workflows/smoke.js.yml index 6acb57c7..7f74574a 100644 --- a/.github/workflows/smoke.js.yml +++ b/.github/workflows/smoke.js.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 with: path: mappersmith - - uses: ./.github/actions/setup-smoke-test + - uses: ./mappersmith/.github/actions/setup-smoke-test - name: Smoke test tsc compile run: | cd mappersmith-consumer @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 with: path: mappersmith - - uses: ./.github/actions/setup-smoke-test + - uses: ./mappersmith/.github/actions/setup-smoke-test - name: Smoke test unit tests run: | cd mappersmith-consumer @@ -43,25 +43,13 @@ jobs: name: Smoke Test Integration runs-on: ubuntu-latest steps: - - name: Show folder content (1) - run: | - ls -la ./ - shell: bash - name: Checkout mappersmith/ uses: actions/checkout@v4 with: path: mappersmith - - name: Show folder content (2) - run: | - ls -la ./ - shell: bash - uses: ./mappersmith/.github/actions/setup-smoke-test - name: Smoke test integration tests run: | cd mappersmith-consumer yarn integration:all shell: bash - - name: Show folder content (4) - run: | - ls -la ./ - shell: bash