Compare commits

...

3 commits

Author SHA1 Message Date
Felix Bartels f4b814529e Update gitignore
Signed-off-by: Felix Bartels <felix@9wd.eu>
2022-07-25 12:37:09 +02:00
Felix Bartels b56229c6a2 Add example for file linting
Signed-off-by: Felix Bartels <felix@9wd.eu>
2022-07-07 14:55:59 +02:00
Felix Bartels 98fe7e6127 Update surfer cli
Signed-off-by: Felix Bartels <felix@9wd.eu>
2022-06-29 13:47:21 +02:00
3 changed files with 7 additions and 1 deletions

View file

@ -4,6 +4,11 @@ type: docker
name: default
steps:
# https://github.com/weastur/metalinter
- name: lint
image: weastur/metalinter
commands:
- hadolint Dockerfile
- name: set version
image: golang:1.12
commands:

1
.gitignore vendored
View file

@ -2,3 +2,4 @@
runner/.env
secrets.txt
.tags
.vscode/*

View file

@ -1,4 +1,4 @@
FROM node:lts-alpine3.12
RUN apk add --no-cache make python3 zip
# use --unsafe to not execute post actions as user nobody
RUN npm -g install cloudron-surfer@5.16.6 --unsafe && npm cache clean --force && surfer --version
RUN npm -g install cloudron-surfer@5.17.5 --unsafe && npm cache clean --force && surfer --version