Skip to content

Commit

Permalink
Merge pull request #233 from systemli/adjust-integration
Browse files Browse the repository at this point in the history
👷 Adjust GHA & Dependabot Configuration
  • Loading branch information
0x46616c6b authored Feb 26, 2022
2 parents 155c2e4 + 76c903e commit f0be950
Show file tree
Hide file tree
Showing 5 changed files with 15,497 additions and 43 deletions.
12 changes: 10 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
---
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
day: "friday"
time: "09:00"
timezone: "Europe/Berlin"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
day: "friday"
time: "09:00"
timezone: "Europe/Berlin"
25 changes: 0 additions & 25 deletions .github/workflows/continuous-integration.yaml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Integration

on:
push:
branches:
- main
pull_request:

jobs:
build:
name: Build
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: ['12', '14', '16']

steps:
- name: Checkout
uses: actions/[email protected]

- name: Set up Node (${{ matrix.node-version }})
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Install Dependencies
run: npm install

- name: Build
run: npm run build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ticker-frontend ![CI/CD](https://github.com/systemli/ticker-frontend/workflows/CI/CD/badge.svg)
# ticker-frontend ![CI/CD](https://github.com/systemli/ticker-frontend/workflows/integration/badge.svg)

## Development

Expand Down
Loading

0 comments on commit f0be950

Please sign in to comment.