Merge pull request 'CI now runs when opening a PR' (#25) from dev into main
This commit was merged in pull request #25.
This commit is contained in:
@@ -26,12 +26,6 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: Lint
|
|
||||||
run: npm run lint
|
|
||||||
|
|
||||||
- name: Run unit tests
|
|
||||||
run: npm run test:unit
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
name: PR Checks
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint-and-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: node:24-bookworm
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Lint
|
||||||
|
run: npm run lint
|
||||||
|
|
||||||
|
- name: Run unit tests
|
||||||
|
run: npm run test:unit
|
||||||
@@ -274,7 +274,7 @@ const additionalExperiences: AdditionalExperience[] = [
|
|||||||
<p class="row">
|
<p class="row">
|
||||||
<span class="row-label"><CvIcon name="linkedin" />LinkedIn</span>
|
<span class="row-label"><CvIcon name="linkedin" />LinkedIn</span>
|
||||||
<a href="https://www.linkedin.com/in/robin-dittmar-948424310/" target="_blank" rel="noopener"
|
<a href="https://www.linkedin.com/in/robin-dittmar-948424310/" target="_blank" rel="noopener"
|
||||||
>robindittmar</a
|
>robin-dittmar</a
|
||||||
>
|
>
|
||||||
</p>
|
</p>
|
||||||
<p class="row">
|
<p class="row">
|
||||||
|
|||||||
Reference in New Issue
Block a user