Skip to content

Commit

Permalink
Merge pull request #35 from Nesopie/feat/ci
Browse files Browse the repository at this point in the history
feat: ci
  • Loading branch information
junderw authored Jun 25, 2024
2 parents 84980ea + ec43b2f commit 316963a
Show file tree
Hide file tree
Showing 3 changed files with 4,833 additions and 20 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
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 316963a

Please sign in to comment.