Browse Source

Update CI & Configs

pull/82/head
Sacha Weatherstone 3 years ago
parent
commit
fb59ff3a6d
No known key found for this signature in database GPG Key ID: 7AB2D7E206124B31
  1. 30
      .github/workflows/ci.yml
  2. 27
      .github/workflows/nightly.yml
  3. 21
      .github/workflows/pr.yml
  4. 7
      .trunk/.gitignore
  5. 10
      .trunk/configs/.markdownlint.yaml
  6. 0
      .trunk/configs/.prettierignore
  7. 0
      .trunk/configs/prettier.config.cjs
  8. 14
      .trunk/configs/svgo.config.js
  9. 28
      .trunk/trunk.yaml
  10. 3
      vercel.json

30
.github/workflows/ci.yml

@ -1,36 +1,26 @@
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [master]
pull_request:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
on: push
jobs:
build-and-package:
runs-on: ubuntu-latest
steps:
# Checks-out repository
- name: Checkout
uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version: latest
- run: pnpm install
- run: pnpm format:check
- run: pnpm build
- run: pnpm package
# Upload Artifact
- name: Install Dependencies
run: pnpm install
- name: Build Package
run: pnpm build
- name: Package Output
run: pnpm package
- name: Upload Artifact
uses: "marvinpinto/action-automatic-releases@latest"
with:

27
.github/workflows/nightly.yml

@ -0,0 +1,27 @@
name: Nightly
on:
schedule:
- cron: 0 8 * * 1-5
workflow_dispatch: {}
jobs:
trunk_check:
name: Trunk Check Upload
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: latest
- name: Install Dependencies
run: pnpm install
- name: Trunk Check
uses: trunk-io/trunk-action@v1
with:
trunk-token: ${{ secrets.TRUNK_TOKEN }}

21
.github/workflows/pr.yml

@ -0,0 +1,21 @@
name: Pull Request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: latest
- name: Install Dependencies
run: pnpm install
- name: Build Package
run: pnpm build

7
.trunk/.gitignore

@ -0,0 +1,7 @@
*out
*logs
*actions
*notifications
plugins
user_trunk.yaml
user.yaml

10
.trunk/configs/.markdownlint.yaml

@ -0,0 +1,10 @@
# Autoformatter friendly markdownlint config (all formatting rules disabled)
default: true
blank_lines: false
bullet: false
html: false
indentation: false
line_length: false
spaces: false
url: false
whitespace: false

0
.prettierignore → .trunk/configs/.prettierignore

0
prettier.config.cjs → .trunk/configs/prettier.config.cjs

14
.trunk/configs/svgo.config.js

@ -0,0 +1,14 @@
module.exports = {
plugins: [
{
name: "preset-default",
params: {
overrides: {
removeViewBox: false, // https://github.com/svg/svgo/issues/1128
sortAttrs: true,
removeOffCanvasPaths: true
}
}
}
]
};

28
.trunk/trunk.yaml

@ -0,0 +1,28 @@
version: 0.1
cli:
version: 1.3.2
plugins:
sources:
- id: trunk
ref: v0.0.8
uri: https://github.com/trunk-io/plugins
lint:
enabled:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- git-diff-check
- [email protected]
- [email protected]
runtimes:
enabled:
- [email protected]
- [email protected]
actions:
disabled:
- trunk-announce
- trunk-check-pre-push
- trunk-fmt-pre-commit
enabled:
- trunk-upgrade-available

3
vercel.json

@ -1,6 +1,5 @@
{
"github": {
"silent": true
},
"rewrites": [{ "source": "/(.*)", "destination": "/" }]
}
}

Loading…
Cancel
Save