diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2024-11-02 19:31:45 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2024-11-02 19:33:28 +0000 |
commit | 475286136da68c0a9cc8bec95d042f7243553fb4 (patch) | |
tree | 91b10c530308264f34dbede624cc52d4c73ce9b7 /.github | |
parent | 0b403eb8212eea318a13a640ab1efad9490845e4 (diff) | |
download | mediasync-475286136da68c0a9cc8bec95d042f7243553fb4.tar mediasync-475286136da68c0a9cc8bec95d042f7243553fb4.tar.gz mediasync-475286136da68c0a9cc8bec95d042f7243553fb4.zip |
Add license, README, CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/check.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..04e8f16 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,11 @@ +on: [push, pull_request] +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: "22" + - run: npm ci --include=dev + - run: npx prettier . --check |