Skip to content

Commit

Permalink
migrate to astro
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhonas committed May 11, 2024
1 parent 48d5a20 commit 7fa7d33
Show file tree
Hide file tree
Showing 80 changed files with 10,251 additions and 5,812 deletions.
5 changes: 5 additions & 0 deletions .astro/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1715400412460
}
}
21 changes: 11 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,22 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
- uses: actions/checkout@v4
- name: Install Dependencies
run: npm install
- name: Build the site
run: npm run build
- name: Deploy the site
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
update-resume-gist:
needs: build-and-deploy
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update Resume Gist
uses: exuanbo/actions-deploy-gist@v1
with:
Expand Down
11 changes: 0 additions & 11 deletions Pipfile

This file was deleted.

9 changes: 9 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), mdx()],
});
13 changes: 9 additions & 4 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
const { defineConfig } = require('cypress')
import { defineConfig } from "cypress";

module.exports = defineConfig({
export default defineConfig({
reporter: "mochawesome",
reporterOptions: {
toConsole: true,
},
e2e: {
baseUrl: 'http://localhost:8080',
baseUrl: "http://localhost:8080",
supportFile: false,
},
})
});
Binary file added dist/Resume_ClintPlummer_ENMR.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions dist/_astro/index.DFxFDwsd.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7fa7d33

Please sign in to comment.