Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bitnovus committed Dec 14, 2023
1 parent 846897c commit dd48045
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
name: 'build-test'

on:
push:

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout
- uses: actions/setup-node
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
- name: Cache Node.js modules
uses: actions/cache
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build, format, lint, package, and run tests
Expand Down

0 comments on commit dd48045

Please sign in to comment.