Skip to content

Commit

Permalink
chore: disable tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
torbrenner committed May 13, 2024
1 parent 71ae22e commit f0a1daa
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 18 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release-develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflows: ["Verify new Code"]
types:
- completed
push:
branches:
- feature/ci-builds

jobs:
download-lib:
Expand All @@ -24,7 +27,8 @@ jobs:
with:
image-name: ${{ github.repository }}
build-platforms: 'linux/amd64'
artifact-name: lib
artifact-name: '*'
push-to: dockerhub
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
22 changes: 11 additions & 11 deletions .github/workflows/verify-new-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
run: npm run lint:check-commits
- run: npm run lint:check

test:
needs: [verify-code]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm ci
- run: npm run test:headless
# test:
# needs: [verify-code]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 16
# cache: 'npm'
# - run: npm ci
# - run: npm run test:headless
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ ARG PRODUCTION=false
RUN sh -c '[ -z "$http_proxy" ] || ( npm config set proxy $http_proxy; npm config set https-proxy $http_proxy )'
# First build the lib
WORKDIR /usr/src/lib
RUN ls ./artifacts/lib/
COPY package.json package-lock.json ./artifacts/lib/
RUN ls artifacts
COPY package.json package-lock.json artifacts/lib/
RUN npm install
COPY ./angular.json ./tsconfig.json ./tsconfig.app.json ./tsconfig.spec.json ./artifacts/lib/
COPY ./src ./artifacts/lib/src
RUN cd lib && npm run build @samply/lens-core && npm run build @samply/lens-components
RUN cd lib/dist/samply/lens-core && npm link \
COPY ./angular.json ./tsconfig.json ./tsconfig.app.json ./tsconfig.spec.json artifacts/lib/
COPY ./src artifacts/lib/src
RUN npm run build @samply/lens-core && npm run build @samply/lens-components
RUN cd dist/samply/lens-core && npm link \
&& cd ../lens-components && npm link
# Second build the application
WORKDIR /usr/src/app
Expand Down

0 comments on commit f0a1daa

Please sign in to comment.