Skip to content

Commit

Permalink
Merge pull request #39 from sammcj/master
Browse files Browse the repository at this point in the history
fix: bump packages, fix core-output, fix eslint
  • Loading branch information
falti authored Nov 28, 2022
2 parents 75886fc + 961045b commit 622227c
Show file tree
Hide file tree
Showing 7 changed files with 4,230 additions and 9,142 deletions.
28 changes: 12 additions & 16 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
{
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
}
}
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": "eslint:recommended",
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {}
}
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
units:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- run: npm ci
- run: npm test

# test action works running from the graph
# test action works running from the graph
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: ./
with:
path: ./fixtures/.env
Loading

0 comments on commit 622227c

Please sign in to comment.