Skip to content

Commit

Permalink
Updating config
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Aug 3, 2021
1 parent 23a0de1 commit 01598f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ jobs:

- name: "Upload test output"
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: "actions/upload-artifact@v2"
with:
name: output
path: tests/**/output
Expand Down Expand Up @@ -317,10 +317,10 @@ jobs:
- name: "Install dependencies"
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: 'yarn install'
run: "yarn install"

- name: "Check linter"
run: 'yarn lint:js'
run: "yarn lint:js"

tslint:
name: "Typescript linting for JS code"
Expand Down Expand Up @@ -354,10 +354,10 @@ jobs:
- name: "Install dependencies"
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: 'yarn install'
run: "yarn install"

- name: "Check linter"
run: 'yarn lint:ts'
run: "yarn lint:ts"

publish-npmjs:
name: "Build JS library and publish it to NPM"
Expand Down

0 comments on commit 01598f8

Please sign in to comment.