We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de29654 commit dc74ffdCopy full SHA for dc74ffd
.github/workflows/tests.yml
@@ -5,20 +5,21 @@ on: [push, pull_request]
5
jobs:
6
tests:
7
runs-on: ubuntu-latest
8
-
+
9
strategy:
10
matrix:
11
node: [ '12', '14', '16' ]
12
13
steps:
14
- uses: actions/checkout@v2
15
- uses: actions/setup-node@v2
16
with:
17
node-version: ${{ matrix.node }}
18
19
- run: yarn install --frozen-lockfile
20
- run: yarn test
21
env:
22
CLOUDINARY_CLOUD_NAME: ${{ secrets.CLOUDINARY_CLOUD_NAME }}
23
CLOUDINARY_API_KEY: ${{ secrets.CLOUDINARY_API_KEY }}
24
CLOUDINARY_API_SECRET: ${{ secrets.CLOUDINARY_API_SECRET }}
25
+ NETLIFY_HOST: ${{ secrets.NETLIFY_HOST }} # Used to test functionality outside of the Netlify environment
0 commit comments