Skip to content

Commit

Permalink
Merge pull request #12 from Nesopie/feat/ci
Browse files Browse the repository at this point in the history
feat: ci
  • Loading branch information
junderw authored Jun 26, 2024
2 parents 8342fe7 + 71426a3 commit 78e7552
Show file tree
Hide file tree
Showing 4 changed files with 8,919 additions and 15 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Tests

on:
push:
branches:
- master
pull_request:

jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run unit
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run standard
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 78e7552

Please sign in to comment.