Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update node package and pyroscope dep #3970

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node_modules/

Check warning on line 1 in .eslintignore

View workflow job for this annotation

GitHub Actions / Check for formatting & lint errors

File ignored by default.
.husky/
reports/
test/
Expand Down Expand Up @@ -26,3 +26,4 @@
.eslintignore
.prettierignore
*.json
Dockerfile*
12 changes: 6 additions & 6 deletions .github/workflows/allure-test-reporter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Allure Test Reporter

Check warning on line 1 in .github/workflows/allure-test-reporter.yml

View workflow job for this annotation

GitHub Actions / Check for formatting & lint errors

File ignored by default.

on:
pull_request:
Expand Down Expand Up @@ -68,21 +68,21 @@
run: |
# Wait a moment for gh-pages to update
sleep 10

# Create a temporary directory for gh-pages checkout
mkdir temp_gh_pages
cd temp_gh_pages

# Initialize git and fetch gh-pages
git init
git remote add origin https://github.com/rudderlabs/rudder-transformer.git
git fetch origin gh-pages
git checkout gh-pages

# Find the latest numbered directory
LATEST_NUM=$(find . -maxdepth 1 -type d -name "[0-9]*" | sort -n | tail -1 | sed 's/\.\///')
echo "number=${LATEST_NUM}" >> $GITHUB_OUTPUT

# Cleanup
cd ..
rm -rf temp_gh_pages
Expand All @@ -96,7 +96,7 @@
const { owner, repo } = context.repo;
const prNumber = context.payload.pull_request.number;
const reportNumber = '${{ steps.report-number.outputs.number }}';

const commentBody = `Allure Test reports for this run are available at:
- Allure Report: https://rudderlabs.github.io/rudder-transformer/${reportNumber}/index.html`;

Expand All @@ -106,4 +106,4 @@
repo,
issue_number: prNumber,
body: commentBody
});
});
6 changes: 3 additions & 3 deletions .github/workflows/build-push-docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Transformer Docker Image

Check warning on line 1 in .github/workflows/build-push-docker-image.yml

View workflow job for this annotation

GitHub Actions / Check for formatting & lint errors

File ignored by default.

on:
workflow_call:
Expand Down Expand Up @@ -96,12 +96,12 @@
with:
ref: ${{ needs.get_sha.outputs.sha }}
fetch-depth: 1

- name: Login to DockerHub
uses: docker/[email protected]
with:
username: ${{ env.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PROD_TOKEN }}
password: ${{ secrets.DOCKERHUB_PROD_TOKEN }}

- name: Setup Docker Buildx
uses: docker/[email protected]
Expand Down Expand Up @@ -149,7 +149,7 @@
with:
ref: ${{ needs.get_sha.outputs.sha }}
fetch-depth: 1

- name: Login to DockerHub
uses: docker/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-for-prod-ut-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Prepare for UT Production Environment Deployment

Check warning on line 1 in .github/workflows/prepare-for-prod-ut-deploy.yml

View workflow job for this annotation

GitHub Actions / Check for formatting & lint errors

File ignored by default.

on:
push:
Expand Down Expand Up @@ -171,4 +171,4 @@
git commit -m "chore: upgrade dedicated user transformers to $TAG_NAME"
git push -u origin dedicated-user-transformer-$TAG_NAME

gh pr create --fill
gh pr create --fill
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.4
FROM node:18.20.1-alpine3.18 AS base
FROM node:18.20.3-alpine3.18 AS base
ENV HUSKY 0

RUN apk update
Expand Down
Loading
Loading