Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Schascha committed Oct 5, 2023
1 parent 8459ca1 commit 98432a7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 17 deletions.
22 changes: 13 additions & 9 deletions .github/dependabot.yml
@@ -1,12 +1,16 @@
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'monthly'
groups:
dev-dependencies:
update-types:
- 'minor'
- 'patch'

- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'monthly'

- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Expand Up @@ -7,20 +7,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Setup πŸ”Œ
uses: actions/setup-node@v3.5.0
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version-file: '.nvmrc'
registry-url: https://registry.npmjs.org/

- name: Build πŸ”§
run: |
npm ci
npm test
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: npm ci

- name: Run tests πŸ§ͺ
run: npm test

- name: Publish πŸš€
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
14.17.0
lts/*

0 comments on commit 98432a7

Please sign in to comment.