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:
68
68
path : |
69
69
./node_modules
70
70
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
75
81
- name : Install dependencies
76
82
run : yarn install
77
83
- name : Run tests
You can’t perform that action at this time.
0 commit comments