mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
This should fix the test failures on `master` — currently tests are failing because the cache was created with an old version of Node.
20 lines
469 B
YAML
20 lines
469 B
YAML
name: Setup
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.16.0
|
|
- name: Cache
|
|
uses: actions/cache@v3
|
|
id: cache
|
|
with:
|
|
path: '**/node_modules'
|
|
key: yarn-v1-${{ runner.os }}-${{ hashFiles('.nvmrc') }}-${{ hashFiles('**/yarn.lock') }}
|
|
- name: Install
|
|
run: yarn --immutable
|
|
shell: bash
|
|
if: steps.cache.outputs.cache-hit != 'true'
|