1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-01 08:46:59 +01:00
notes/.github/workflows/ci.yml

37 lines
686 B
YAML

name: CI
on: [push, pull_request]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build image
run: docker build . --tag notes
- name: Show image info
run: docker images
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '14.x'
- uses: actions/cache@v1
with:
path: $HOME/.npm
key: npm-${{ hashFiles('package-lock.json') }}
- name: Install Dependencies
run: npm ci
- name: Run release build
run: npm run release