Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
JannikStreek committed Oct 3, 2022
2 parents 872b1fd + 7488601 commit 4138cde
Show file tree
Hide file tree
Showing 75 changed files with 31,349 additions and 26,236 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand All @@ -29,7 +29,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and export to Docker
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: .
tags: |
Expand All @@ -39,12 +39,22 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- run: npm --prefix teammapper-backend ci

- run: npm --prefix teammapper-backend run lint

teammapper-frontend-lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- run: npm --prefix teammapper-frontend ci

- run: npm --prefix teammapper-frontend run lint

teammapper-backend-test-e2e:
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.14.0-alpine3.15 as base
FROM node:16.17.1-alpine3.15 as base
# Ensuring that all npm packages and commands are executed with a non-root user
USER node

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"private": false,
"license": "MIT",
"engines": {
"npm": "~8.3.1",
"node": "~16.14.0"
"npm": "~8.15.0",
"node": "~16.17.1"
},
"scripts": {
"build:prod": "npm run build:frontend:prod && cp teammapper-frontend/dist -TRv teammapper-backend/client && npm run build:backend:prod",
Expand Down
12 changes: 7 additions & 5 deletions teammapper-backend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"env": {
"browser": true,
"es2021": true,
"jest/globals": true
"jest/globals": true,
"node": true
},
"extends": [
"plugin:import/typescript",
"airbnb-typescript/base",
"plugin:nestjs/recommended"
"eslint:recommended",
"plugin:nestjs/recommended",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
Expand All @@ -22,6 +22,8 @@
"import"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"import/extensions": [
"error",
"ignorePackages",
Expand Down
Loading

0 comments on commit 4138cde

Please sign in to comment.