Skip to content

Commit

Permalink
chore: update deps and actions (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coly010 authored Apr 12, 2024
1 parent e2f8d51 commit 481cb93
Show file tree
Hide file tree
Showing 9 changed files with 11,746 additions and 14,829 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: pr-checks
run-name: Check PR Validity
on:
pull_request:
branches:
- master
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install
- run: npm run test
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: release
run-name: Release New Package
on:
push:
branches:
- master
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install
- run: npx semantic-release
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules
coverage
dist
.DS_Store
.idea
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 481cb93

Please sign in to comment.