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 2d5b9d7 commit 35a1234Copy full SHA for 35a1234
.github/workflows/tests.yml
@@ -17,7 +17,7 @@ jobs:
17
fail-fast: false # Whether to stop execution of other instances
18
max-parallel: 4
19
matrix:
20
- os: ["ubuntu-latest", "windows-latest"] # , "macos-latest"
+ os: ["ubuntu-latest"]#, "windows-latest"] # , "macos-latest"
21
steps:
22
- name: Check out code
23
uses: actions/checkout@v2
@@ -34,7 +34,8 @@ jobs:
34
run: |
35
NODE_ENV=testing
36
DOTENV_CONFIG_PATH=./test/fixtures/.env.test
37
- ls $(dirname $DOTENV_CONFIG_PATH)
38
if: matrix.os == 'ubuntu-latest'
39
- name: Run tests
40
- run: npm test
+ run: |
+ ls -a $(dirname $DOTENV_CONFIG_PATH)
41
+ npm test
0 commit comments