File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -173,3 +173,30 @@ jobs:
173173 - run : ./action/tests/check-version.sh 'node' 'v10.17.0'
174174 - run : ./action/tests/check-version.sh 'yarn' '1.19.0'
175175 - run : ./action/tests/check-registry.sh 'https://some.path.here.com/lol/'
176+
177+ test-specific-variant :
178+ runs-on : " ${{ matrix.os }}-latest"
179+
180+ strategy :
181+ matrix :
182+ os : [ubuntu]
183+
184+ steps :
185+ - uses : actions/checkout@v3
186+ with :
187+ path : action
188+
189+ - run : npm ci
190+ working-directory : ./action
191+ - run : npm run build
192+ working-directory : ./action
193+ - uses : ./action
194+ with :
195+ variant : linux-openssl-1.1
196+
197+ - run : ./action/tests/log-info.sh
198+ - run : ./action/tests/check-version.sh 'volta' 'current'
199+ 200+ - run : ./action/tests/check-version.sh 'node' 'v12.16.1'
201+ - run : ./action/tests/check-version.sh 'npm' '7.5.2'
202+ - run : ./action/tests/check-version.sh 'yarn' '1.19.1'
You can’t perform that action at this time.
0 commit comments