changed the action to use cache #19

Merged
bizcochito merged 30 commits from testing into develop 2024-01-06 18:57:41 +00:00
1 changed files with 3 additions and 8 deletions
Showing only changes of commit a44c62471f - Show all commits

View File

@ -14,14 +14,9 @@ jobs:
run: apk add npm git curl bash
- name: Check out repository code
uses: actions/checkout@v3
- name: Cache NPM dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.OS }}-npm-cache-
- name: Install project dependencies
run: npm install
uses: actions/setup-node@v4
with:
cache: 'npm'
- name: Run docker-compose
run: docker compose down -v && docker compose run bot-api bun test