Merge branch 'main' into 'paul-bastelt'

# Conflicts:
#   README.md
This commit is contained in:
Paul Pabr 2022-10-03 13:44:32 +00:00
commit 67b648aab9

32
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,32 @@
version: 2.1
jobs:
build:
working_directory: ~/repo
docker:
- image: circleci/node:11
steps:
- checkout
- run:
name: Update NPM
command: "sudo npm install -g npm"
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install Dependencies
command: npm install
- run:
name: Install dpkg and fakeroot
command: |
sudo apt-get update -y
sudo apt-get install -y dpkg fakeroot
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: Generate Builds
command: npm run make
- store_artifacts:
path: ~/repo/out/make