Skip to content

Update groups.scss #341

Update groups.scss

Update groups.scss #341

Workflow file for this run

on: [push, pull_request]
name: "Frontend CI"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 20
- name: Install dependencies
run: yarn --frozen-lockfile
working-directory: frontend
- name: Build
run: yarn build
working-directory: frontend
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 20
- name: Install dependencies
run: yarn --frozen-lockfile
working-directory: frontend
- name: Test
run: yarn test
working-directory: frontend
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 20
- name: Install dependencies
run: yarn --frozen-lockfile
working-directory: frontend
- name: Build
run: yarn lint:check
working-directory: frontend
docker:
runs-on: ubuntu-latest
permissions:
packages: write
needs:
- build
- test
- lint
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
if: ${{ github.ref == 'refs/heads/main' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./frontend
file: ./frontend/Dockerfile
push: ${{ github.ref == 'refs/heads/main' }}
tags: ghcr.io/cthit/hubbit-frontend:latest