Skip to content

Commit

Permalink
test: fix tested svelte versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanlawson committed Jun 28, 2021
1 parent b160d5f commit 131c606
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2.1

supported-svelte-versions: &supported-svelte-versions ["local", "3.29.4", "3.33.0", "3.38.3"]
supported-svelte-versions: &supported-svelte-versions ["local", "3.29.4", "3.33.0"]

workflows:
build_and_test:
Expand Down Expand Up @@ -38,7 +38,9 @@ jobs:
steps:
- run:
name: Override version of svelte@<<parameters.svelte-version>>
command: yarn add svelte@<<parameters.svelte-version>> --dev
# Do --ignore-scripts because we don't actually want the old version of Svelte to compile
# the picker; just get injected at runtime. This is how `emoji-picker-element/svelte` is used.
command: yarn add svelte@<<parameters.svelte-version>> --dev --ignore-scripts
- run:
name: Yarn install
command: yarn install --immutable
Expand Down

0 comments on commit 131c606

Please sign in to comment.