diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..f9b41a74 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 16 + + - name: Install + run: npm ci + + - name: Build + run: npm run build diff --git a/src/.vitepress/config.mjs b/src/.vitepress/config.mjs index 91372b9b..3f6c45fe 100644 --- a/src/.vitepress/config.mjs +++ b/src/.vitepress/config.mjs @@ -6,6 +6,7 @@ export default defineConfig({ title: 'PrivateAim', base: '/', head: [['link', {rel: 'icon', href: '/images/icon/favicon.ico'}]], + ignoreDeadLinks: "localhostLinks", themeConfig: { socialLinks: [ {icon: 'github', link: 'https://github.com/PrivateAim'},