Skip to content

Commit

Permalink
Merge pull request #1 from JulienR1/feature/basic-page-layout
Browse files Browse the repository at this point in the history
Feature/basic page layout
  • Loading branch information
JulienR1 authored Jan 29, 2025
2 parents c8e089a + a223d35 commit bd4ebd9
Show file tree
Hide file tree
Showing 20 changed files with 9,089 additions and 5,850 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: CI

on:
push:
pull_request:

jobs:
common:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/common
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- run: npm ci
- run: npm run build

web:
needs: common
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install common library
working-directory: ./packages/common
run: |
npm ci
npm run build
- run: npm ci
- run: npm run lint
- run: npm run test --if-present
- run: npm run build

Loading

0 comments on commit bd4ebd9

Please sign in to comment.