Skip to content

Commit

Permalink
MIT license (#6)
Browse files Browse the repository at this point in the history
* Change license to MIT

* 0.3.0

* Run lint internally

* Update pipeline
  • Loading branch information
domeq committed Feb 18, 2021
1 parent bda3030 commit 6842b3d
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 687 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
node-version: '14'
check-latest: true
registry-url: 'https://registry.npmjs.org'
- run: npm publish --access public
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/test.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12' ]
node: [ '12', '14' ]
name: Lint on Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
Expand All @@ -15,15 +15,12 @@ jobs:
node-version: ${{ matrix.node }}
check-latest: true
- run: npm ci --quiet
- uses: bradennapier/eslint-plus-action@v3.4.2
with:
issueSummaryOnlyOnEvent: true
npmInstall: false
- run: npm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12' ]
node: [ '12', '14' ]
name: Test on Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
Expand All @@ -32,6 +29,4 @@ jobs:
node-version: ${{ matrix.node }}
check-latest: true
- run: npm ci --quiet
- uses: mattallty/jest-github-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm test

0 comments on commit 6842b3d

Please sign in to comment.