Skip to content

Commit

Permalink
wip: try changing style import order
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbira committed Sep 3, 2024
1 parent d23da08 commit c8389fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ env:
IMPAAS_APP_NAME: cpp-connect
IMPAAS_DEPLOY_TOKEN: ${{ secrets.IMPAAS_DEPLOY_TOKEN }}

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
on: [push]
# push:
# branches: ["main"]
# pull_request:
# branches: ["main"]

jobs:
lint:
Expand Down Expand Up @@ -109,15 +109,15 @@ jobs:
context: .
# pushes regardless; only main tagged with latest
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: ${{ steps.meta.outputs.tags }}, ghcr.io/imperial/cpp-connect:latest
labels: ${{ steps.meta.outputs.labels }}
no-cache: true

# Deploy!
deploy-impaas:
needs:
- build-and-push-image
if: github.ref == 'refs/heads/main'
# if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
env:
TSURU_TOKEN: ${{ secrets.IMPAAS_DEPLOY_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions app/students/[shortcode]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import RestrictedArea from "@/components/rbac/RestrictedArea"
import RestrictedAreaStudent from "@/components/rbac/RestrictedAreaStudent"
import prisma from "@/lib/db"

import styles from "./page.module.scss"

import { OpportunityType, Role } from "@prisma/client"
import { Box, Card, Flex, Heading, Separator, Text } from "@radix-ui/themes"
import { format } from "date-fns"
Expand All @@ -19,6 +17,8 @@ import React from "react"
import { BsEnvelope, BsFileEarmarkText, BsGithub, BsGlobe, BsLinkedin } from "react-icons/bs"
import { IconType } from "react-icons/lib"

import styles from "./page.module.scss"

const linkIconSize = "25"

/**
Expand Down

0 comments on commit c8389fa

Please sign in to comment.