ci: turn boilerplate into composite action
This commit is contained in:
parent
6b06105f00
commit
883df58724
3 changed files with 27 additions and 52 deletions
19
.github/actions/setup/action.yml
vendored
Normal file
19
.github/actions/setup/action.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
name: Setup
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: composite
|
||||||
|
steps:
|
||||||
|
- name: Install node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
- name: Cache
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: cache
|
||||||
|
with:
|
||||||
|
path: '**/node_modules'
|
||||||
|
key: yarn-v1-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
- name: Install
|
||||||
|
run: yarn --immutable
|
||||||
|
shell: bash
|
||||||
|
if: steps.cache.outputs.cache-hit != 'true'
|
45
.github/workflows/build.yml
vendored
45
.github/workflows/build.yml
vendored
|
@ -19,19 +19,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install node
|
- name: Set up environment
|
||||||
uses: actions/setup-node@v1
|
uses: ./.github/actions/setup
|
||||||
with:
|
|
||||||
node-version: 16
|
|
||||||
- name: Cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
id: cache
|
|
||||||
with:
|
|
||||||
path: '**/node_modules'
|
|
||||||
key: yarn-v1-${{ hashFiles('**/yarn.lock') }}
|
|
||||||
- name: Install
|
|
||||||
run: yarn --immutable
|
|
||||||
if: steps.cache.outputs.cache-hit != 'true'
|
|
||||||
- name: Build API
|
- name: Build API
|
||||||
run: cd packages/loot-core && yarn build:api
|
run: cd packages/loot-core && yarn build:api
|
||||||
|
|
||||||
|
@ -39,19 +28,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install node
|
- name: Set up environment
|
||||||
uses: actions/setup-node@v1
|
uses: ./.github/actions/setup
|
||||||
with:
|
|
||||||
node-version: 16
|
|
||||||
- name: Cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
id: cache
|
|
||||||
with:
|
|
||||||
path: '**/node_modules'
|
|
||||||
key: yarn-v1-${{ hashFiles('**/yarn.lock') }}
|
|
||||||
- name: Install
|
|
||||||
run: yarn --immutable
|
|
||||||
if: steps.cache.outputs.cache-hit != 'true'
|
|
||||||
- name: Build Web
|
- name: Build Web
|
||||||
run: ./bin/package-browser
|
run: ./bin/package-browser
|
||||||
|
|
||||||
|
@ -67,18 +45,7 @@ jobs:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install node
|
- name: Set up environment
|
||||||
uses: actions/setup-node@v1
|
uses: ./.github/actions/setup
|
||||||
with:
|
|
||||||
node-version: 16
|
|
||||||
- name: Cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
id: cache
|
|
||||||
with:
|
|
||||||
path: '**/node_modules'
|
|
||||||
key: yarn-v1-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
|
|
||||||
- name: Install
|
|
||||||
run: yarn --immutable
|
|
||||||
if: steps.cache.outputs.cache-hit != 'true'
|
|
||||||
- name: Build Electron
|
- name: Build Electron
|
||||||
run: ./bin/package
|
run: ./bin/package
|
||||||
|
|
15
.github/workflows/lint.yml
vendored
15
.github/workflows/lint.yml
vendored
|
@ -12,18 +12,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install node
|
- name: Set up environment
|
||||||
uses: actions/setup-node@v1
|
uses: ./.github/actions/setup
|
||||||
with:
|
|
||||||
node-version: 16
|
|
||||||
- name: Cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
id: cache
|
|
||||||
with:
|
|
||||||
path: '**/node_modules'
|
|
||||||
key: yarn-v1-${{ hashFiles('**/yarn.lock') }}
|
|
||||||
- name: Install
|
|
||||||
run: yarn --immutable
|
|
||||||
if: steps.cache.outputs.cache-hit != 'true'
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: yarn lint
|
run: yarn lint
|
||||||
|
|
Loading…
Reference in a new issue