Skip to content

Commit dbd4e0b

Browse files
authored
Env (#440)
* Add lighthouse action * fix version * fix version * Add concurrency to gh actions * Trigger build * Lower check_interval * Fix * Warm up cache * Fix slow prism * Fix lockfile
1 parent e491a95 commit dbd4e0b

File tree

7 files changed

+647
-470
lines changed

7 files changed

+647
-470
lines changed

.github/workflows/codeql.yml

Lines changed: 31 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ "develop", main ]
16+
branches: ["develop", main]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ "develop" ]
19+
branches: ["develop"]
2020
schedule:
21-
- cron: '41 18 * * 2'
21+
- cron: "41 18 * * 2"
2222

2323
jobs:
2424
analyze:
@@ -32,43 +32,42 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
language: [ 'javascript' ]
35+
language: ["javascript"]
3636
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
3737
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
3838

3939
steps:
40-
- name: Checkout repository
41-
uses: actions/checkout@v3
40+
- name: Checkout repository
41+
uses: actions/checkout@v3
4242

43-
# Initializes the CodeQL tools for scanning.
44-
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
46-
with:
47-
languages: ${{ matrix.language }}
48-
# If you wish to specify custom queries, you can do so here or in a config file.
49-
# By default, queries listed here will override any specified in a config file.
50-
# Prefix the list here with "+" to use these queries and those in the config file.
43+
# Initializes the CodeQL tools for scanning.
44+
- name: Initialize CodeQL
45+
uses: github/codeql-action/init@v2
46+
with:
47+
languages: ${{ matrix.language }}
48+
# If you wish to specify custom queries, you can do so here or in a config file.
49+
# By default, queries listed here will override any specified in a config file.
50+
# Prefix the list here with "+" to use these queries and those in the config file.
5151

52-
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
53-
# queries: security-extended,security-and-quality
52+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
53+
# queries: security-extended,security-and-quality
5454

55+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
56+
# If this step fails, then you should remove it and run the build manually (see below)
57+
- name: Autobuild
58+
uses: github/codeql-action/autobuild@v2
5559

56-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
57-
# If this step fails, then you should remove it and run the build manually (see below)
58-
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v2
60+
# ℹ️ Command-line programs to run using the OS shell.
61+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6062

61-
# ℹ️ Command-line programs to run using the OS shell.
62-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
63+
# If the Autobuild fails above, remove it and uncomment the following three lines.
64+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
6365

64-
# If the Autobuild fails above, remove it and uncomment the following three lines.
65-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
66+
# - run: |
67+
# echo "Run, Build Application using script"
68+
# ./location_of_script_within_repo/buildscript.sh
6669

67-
# - run: |
68-
# echo "Run, Build Application using script"
69-
# ./location_of_script_within_repo/buildscript.sh
70-
71-
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
73-
with:
74-
category: "/language:${{matrix.language}}"
70+
- name: Perform CodeQL Analysis
71+
uses: github/codeql-action/analyze@v2
72+
with:
73+
category: "/language:${{matrix.language}}"

.github/workflows/lighthouse.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Lighthouse
2+
3+
concurrency:
4+
group: lighthouse-${{ github.event.pull_request.number || github.ref }}
5+
cancel-in-progress: true
6+
7+
on: [pull_request]
8+
jobs:
9+
lighthouse:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
14+
- name: Wait for Vercel preview deployment
15+
uses: patrickedqvist/[email protected]
16+
id: waitForVercelPreviewDeployment
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
max_timeout: 600
20+
check_interval: 15
21+
22+
- name: Warm-up devfaq cache
23+
run: |
24+
curl ${{ steps.waitForVercelPreviewDeployment.outputs.url }}
25+
curl ${{ steps.waitForVercelPreviewDeployment.outputs.url }}/questions/1
26+
27+
- name: Lighthouse
28+
uses: foo-software/[email protected]
29+
with:
30+
urls: ${{ steps.waitForVercelPreviewDeployment.outputs.url }}
31+
gitHubAccessToken: ${{ secrets.GITHUB_TOKEN }}
32+
locale: pl
33+
prCommentEnabled: true

.github/workflows/nextjs_bundle_analysis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: "Next.js Bundle Analysis"
22

3+
concurrency:
4+
group: analyze-${{ github.event.pull_request.number || github.ref }}
5+
cancel-in-progress: true
6+
37
on:
48
pull_request:
59
push:

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
name: Tests
2+
3+
concurrency:
4+
group: tests-${{ github.event.pull_request.number || github.ref }}
5+
cancel-in-progress: true
6+
27
on: [pull_request]
38
jobs:
49
build_and_test:

apps/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"prismjs": "1.29.0",
2727
"react": "18.2.0",
2828
"react-dom": "18.2.0",
29-
"remark-prism": "1.3.6",
29+
"rehype-prism-plus": "1.5.0",
3030
"tailwind-merge": "1.8.0"
3131
},
3232
"devDependencies": {

apps/app/src/lib/markdown.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
// import remarkPrism from "remark-prism";
1+
import rehypePrism from "rehype-prism-plus";
22
import { serialize } from "next-mdx-remote/serialize";
33

44
export const serializeSource = (source: string) =>
55
serialize(source, {
66
mdxOptions: {
7-
// remarkPlugins: [remarkPrism],
7+
remarkPlugins: [],
8+
rehypePlugins: [rehypePrism],
89
},
910
});

0 commit comments

Comments
 (0)