Skip to content

Commit

Permalink
Basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerKiKi committed Apr 26, 2024
1 parent 96663ec commit 13b4c89
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: npm
directory: '/'
schedule:
interval: monthly
open-pull-requests-limit: 10
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-patch', 'version-update:semver-minor']
- dependency-name: '@types/*'
update-types: ['version-update:semver-patch', 'version-update:semver-minor', 'version-update:semver-major']
15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: main
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Need all tags to get a version number in-between tags
- uses: actions/setup-node@v4
with:
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn build

0 comments on commit 13b4c89

Please sign in to comment.