Skip to content
Merged
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
27 changes: 0 additions & 27 deletions .cursor/rules/02-development-commands.mdc

This file was deleted.

26 changes: 0 additions & 26 deletions .cursor/rules/03-architecture.mdc

This file was deleted.

22 changes: 0 additions & 22 deletions .cursor/rules/04-inputs-outputs.mdc

This file was deleted.

14 changes: 0 additions & 14 deletions .cursor/rules/05-quality-and-commits.mdc

This file was deleted.

16 changes: 0 additions & 16 deletions .cursor/rules/06-testing-strategy.mdc

This file was deleted.

15 changes: 0 additions & 15 deletions .cursor/rules/07-ci-cd.mdc

This file was deleted.

25 changes: 0 additions & 25 deletions .cursor/rules/09-dynamic-installation.mdc

This file was deleted.

18 changes: 0 additions & 18 deletions .cursor/rules/10-important-notes.mdc

This file was deleted.

14 changes: 12 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ on:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write # Required for semantic-release and tag pushing

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: semantic-release
id: semantic
Expand All @@ -34,6 +36,14 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Update major version tag
if: steps.semantic.outputs.new-release-published == 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git tag -fa v${{ steps.semantic.outputs.release-major }} -m "Update v${{ steps.semantic.outputs.release-major }} tag"
git push origin v${{ steps.semantic.outputs.release-major }} --force

- name: Dump semantic outputs
if: steps.semantic.outputs.new-release-published == 'true'
run: |
Expand Down Expand Up @@ -80,7 +90,7 @@ jobs:
TAGS="${TAGS},ghcr.io/codfish/semantic-release-action:v${{ steps.semantic.outputs.release-major }}"
echo "tags=${TAGS}" >> "$GITHUB_OUTPUT"

# Push docker images to GCR
# Push docker images to GCR
# Dockerhub is auto synced with the repo, no need to explicitly deploy
- name: Build and push docker images to GCR
uses: docker/build-push-action@v5
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
name: Validate

on: pull_request_target

permissions: {}

jobs:
validate:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
ref: ${{ github.event.pull_request.head.sha }}

- uses: codfish/actions/setup-node-and-install@v1.0.0
with:
node-version: lts/*
- uses: codfish/actions/setup-node-and-install@v3

- run: npm run lint

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.18.0
v24.13.0
Loading
Loading