Skip to content

Commit

Permalink
add: caching of the vm
Browse files Browse the repository at this point in the history
  • Loading branch information
meo-pill committed Jan 4, 2025
1 parent b5b6469 commit 31facb9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache
key: ${{ runner.os }}-cache-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-cache-
- name: Test in FreeBSD
id: test
uses: vmactions/freebsd-vm@v1
Expand All @@ -41,5 +50,4 @@ jobs:
prepare: |
pkg install -y bash
run: |
echo $OSTYPE
./testing.sh

0 comments on commit 31facb9

Please sign in to comment.