Skip to content

Commit 49f090c

Browse files
committed
Removing unnecessary build steps
1 parent 9f5d4c7 commit 49f090c

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

.github/workflows/docker.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,9 @@ env:
1919
IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/quant-ux-backend
2020

2121
jobs:
22-
lint-and-test:
23-
name: Lint and Test
24-
runs-on: ubuntu-latest
25-
steps:
26-
- name: Checkout repository
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28-
29-
- name: Set up Node.js
30-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
31-
with:
32-
node-version: "18"
33-
cache: "npm"
34-
35-
- name: Install dependencies
36-
run: npm ci
3722
build-and-push:
3823
name: Build and Push Docker Image
3924
runs-on: ubuntu-latest
40-
needs: lint-and-test
4125
# Only build images on push, not on PRs (unless you want to)
4226
if: github.event_name == 'push' || github.event_name == 'release'
4327
permissions:
@@ -60,10 +44,6 @@ jobs:
6044
username: ${{ github.actor }}
6145
password: ${{ secrets.GITHUB_TOKEN }}
6246

63-
- name: Get Package Version
64-
id: package_version
65-
run: echo "version=$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT
66-
6747
- name: Extract branch name
6848
id: branch
6949
run: echo "name=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"titleBar.inactiveBackground": "#31031f",
66
"titleBar.inactiveForeground": "#e6e6e6"
77
},
8-
"java.configuration.updateBuildConfiguration": "automatic"
8+
"java.configuration.updateBuildConfiguration": "automatic",
9+
"java.compile.nullAnalysis.mode": "automatic"
910
}

0 commit comments

Comments
 (0)