Skip to content

Commit

Permalink
fixup! ci: use release-please
Browse files Browse the repository at this point in the history
  • Loading branch information
Billlynch committed Oct 10, 2023
1 parent 4e067fe commit aa51133
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build, Test, List
name: Build, Test, Lint

concurrency: deployment

Expand All @@ -17,6 +17,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ needs.release-please.outputs.release_tag_name }}
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -29,12 +31,18 @@ jobs:
needs: [Setup-Environment]
steps:
- run: yarn build
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Test:
runs-on: ubuntu-latest
needs: [ Setup-Environment ]
needs: [ Setup-Environment, Build ]
steps:
- run: yarn test
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Lint:
runs-on: ubuntu-latest
Expand All @@ -43,3 +51,6 @@ jobs:
- run: |
yarn format:check
yarn lint
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
1 change: 1 addition & 0 deletions .github/workflows/Release-Please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
scope: '@spotify-confidence'
- name: Install dependencies
run: yarn install --frozen-lockfile

Expand Down

0 comments on commit aa51133

Please sign in to comment.