mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Create env variable from repo secret
This commit is contained in:
parent
bf85fbcde1
commit
3a92fd3613
1 changed files with 4 additions and 1 deletions
5
.github/workflows/run-ava-tests.js.yml
vendored
5
.github/workflows/run-ava-tests.js.yml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
|||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [15.x, 16.x]
|
||||
node-version: [14.x, 15.x]
|
||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||
|
||||
steps:
|
||||
|
|
@ -25,6 +25,9 @@ jobs:
|
|||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: |
|
||||
touch .env
|
||||
echo ${{ secrets.GH_ENV }} >> .env
|
||||
- run: npm ci
|
||||
- run: npm run generate
|
||||
- run: npm test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue