Skip to content

Commit

Permalink
Merge pull request #218 from enter-at/refactor/interface-naming
Browse files Browse the repository at this point in the history
Expose and handle UnauthorizedError
  • Loading branch information
sleistner authored Jul 23, 2020
2 parents bc3bd7b + 9a70318 commit 7bf506b
Show file tree
Hide file tree
Showing 38 changed files with 1,466 additions and 353 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"**/*.js"
9 changes: 9 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
extends: [
"@enter-at/typescript-prettier"
],
rules: {
"class-methods-use-this": "off",
"import/prefer-default-export": "off"
},
}
17 changes: 15 additions & 2 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Lint & Test

on: [push]
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
lint:
Expand All @@ -18,11 +24,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["10.x", "12.x"]
node:
- 10.x
- 12.x
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test

- uses: actions/upload-artifact@v2
with:
name: Test Reports
path: ${{ github.workspace }}/test-reports/**/*
Loading

0 comments on commit 7bf506b

Please sign in to comment.