Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
UziTech committed Aug 3, 2023
1 parent 0664a29 commit 674ebc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Expand Up @@ -29,6 +29,10 @@ jobs:
run: npm run test:unit
- name: Run Spec Tests πŸ‘©πŸ½β€πŸ’»
run: npm run test:specs
- name: Run UMD Tests πŸ‘©πŸ½β€πŸ’»
run: npm run test:umd
- name: Run Types Tests πŸ‘©πŸ½β€πŸ’»
run: npm run test:types

Lint:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -77,8 +77,8 @@
"uglify-js": "^3.17.4"
},
"scripts": {
"test": "cross-env NODE_OPTIONS=--loader=ts-node/esm jasmine --config=jasmine.json && npm run test:umd && npm run test:types",
"test:all": "npm test && npm run test:lint",
"test": "cross-env NODE_OPTIONS=--loader=ts-node/esm jasmine --config=jasmine.json",
"test:all": "npm test && npm run test:umd && npm run test:types && npm run test:lint",
"test:unit": "npm test -- test/unit/**/*-spec.js",
"test:specs": "npm test -- test/specs/**/*-spec.js",
"test:lint": "eslint .",
Expand Down

0 comments on commit 674ebc2

Please sign in to comment.