Skip to content

Commit

Permalink
fix(github): add default workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanGerbeth committed Dec 19, 2021
1 parent 14e1cdb commit a58d674
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Default
on:
push:
branches:
- feature/*
- renovate/*

jobs:
install:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Install
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [16]

steps:
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v2
- name: cache node_modules
uses: actions/cache@v2
id: cache
with:
path: |
node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Test
run: npm run test

0 comments on commit a58d674

Please sign in to comment.