Skip to content

Commit

Permalink
Merge branch 'main' into remove-eol-node-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jun 3, 2023
2 parents c4aef33 + 6ed6998 commit 902dacf
Show file tree
Hide file tree
Showing 7 changed files with 2,032 additions and 4,697 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
cache: npm
- run: npm ci
- run: npm run build
# https://github.com/octokit/action.js/pull/494
- name: "Fix pkg.files file pattern"
run: node scripts/fix-package-json.js
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Test
- opened
- synchronize
jobs:
test:
test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -28,3 +28,13 @@ jobs:
run: npm test
- name: Test TypeScript
run: npm run test:typescript
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- run: exit 1
if: ${{ needs.test_matrix.result != 'success' }}
- uses: actions/checkout@v3
- run: npm ci
- run: npm run lint
if: ${{ always() }}
Loading

0 comments on commit 902dacf

Please sign in to comment.