File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -68,10 +68,16 @@ jobs:
6868 path : |
6969 ./node_modules
7070 key : ${{ hashFiles('yarn.lock') }}
71- - name : Get the latest Meilisearch RC
72- run : echo "MEILISEARCH_VERSION=$(curl https://raw.githubusercontent.com/meilisearch/integration-guides/main/scripts/get-latest-meilisearch-rc.sh | bash)" >> $GITHUB_ENV
73- - name : Meilisearch (${{ env.MEILISEARCH_VERSION }}) setup with Docker
74- run : docker run -d -p 7700:7700 getmeili/meilisearch:${{ env.MEILISEARCH_VERSION }} meilisearch --master-key=masterKey --no-analytics
71+ - name : Setup node
72+ uses : actions/setup-node@v2
73+ with :
74+ node-version : ' 14.x'
75+ - name : Grep beta version of Meilisearch
76+ run : echo "MEILISEARCH_IMAGE=$(sh .github/scripts/beta-docker-version.sh)" >> $GITHUB_ENV
77+ - name : Try version script
78+ run : sh .github/scripts/beta-docker-version.sh
79+ - name : Meilisearch (${{ env.MEILISEARCH_IMAGE }}) setup with Docker
80+ run : docker run -d -p 7700:7700 getmeili/meilisearch:${{ env.MEILISEARCH_IMAGE }} meilisearch --master-key=masterKey --no-analytics
7581 - name : Install dependencies
7682 run : yarn install
7783 - name : Run tests
You can’t perform that action at this time.
0 commit comments