Skip to content

Commit

Permalink
chore: chromatic deployment only on Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinFabre-ods committed Jul 8, 2024
1 parent 9cf5798 commit ad7f252
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/visualizations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,6 @@ jobs:
chromatic-deployment:
if: github.event.pull_request.draft == false || github.ref_name == 'main'
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18.x", "20.x"]

needs: [test, lint]

steps:
Expand All @@ -77,10 +73,10 @@ jobs:
with:
fetch-depth: 0

- name: Use Node ${{ matrix.node }}
- name: Use Node 20
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
node-version: '20.x'

- name: Build
run: npm run build-ci
Expand Down

0 comments on commit ad7f252

Please sign in to comment.