Skip to content

Update actions/cache action to v4.2.4 #1141

Update actions/cache action to v4.2.4

Update actions/cache action to v4.2.4 #1141

Workflow file for this run

name: "Continuous Integration"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: oven-sh/setup-bun@8f24390df009a496891208e5e36b8a1de1f45135 # v1
with:
bun-version: 1.0.1
- name: Cache node_modules
id: cache-npm-packages
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
env:
cache-name: cache-node_modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('bun.lockb') }}
- name: Install Dependencies
if: ${{ steps.cache-npm-packages.outputs.cache-hit != 'true' }}
run: bun install
- name: Build
run: bun run build
- name: Test
run: bun run test