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
5 changes: 1 addition & 4 deletions .github/workflows/api-v1-production-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,12 @@ jobs:
cache-name: api-v1-build
key-1: ${{ hashFiles('yarn.lock') }}
key-2: ${{ hashFiles('apps/api/v1/**.[jt]s', 'apps/api/v1/**.[jt]sx', '!**/node_modules') }}
key-3: ${{ github.event.pull_request.number || github.ref }}
# Ensures production-build.yml will always be fresh
key-4: ${{ github.sha }}
with:
path: |
${{ github.workspace }}/apps/api/v1/.next
**/.turbo/**
**/dist/**
key: ${{ runner.os }}-${{ env.cache-name }}-${{ env.key-1 }}-${{ env.key-2 }}-${{ env.key-3 }}-${{ env.key-4 }}
key: ${{ env.cache-name }}-${{ env.key-1 }}-${{ env.key-2 }}
- name: Log Cache Hit
if: steps.cache-api-v1-build.outputs.cache-hit == 'true'
run: echo "Cache hit for API v1 build. Skipping build."
Expand Down
8 changes: 4 additions & 4 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
"rules": {
"style": {
"noRestrictedImports": {
"level": "warn",
"level": "error",
"options": {
"patterns": [
{
Expand Down Expand Up @@ -180,7 +180,7 @@
"rules": {
"style": {
"noRestrictedImports": {
"level": "warn",
"level": "error",
"options": {
"patterns": [
{
Expand All @@ -204,7 +204,7 @@
"rules": {
"style": {
"noRestrictedImports": {
"level": "warn",
"level": "error",
"options": {
"patterns": [
{
Expand All @@ -224,7 +224,7 @@
"rules": {
"style": {
"noRestrictedImports": {
"level": "warn",
"level": "error",
"options": {
"patterns": [
{
Expand Down
Loading