Skip to content

Commit

Permalink
Add ci yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dumganhar committed May 28, 2024
1 parent 72b64aa commit 073c32a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-latest
name: "Build"
steps:
- uses: actions/setup-node@v4
with:
node-version: 18

- name: Checkout
uses: actions/checkout@v4

- name: Install
run: |
npm i
- name: Test
run: |
npm run test

0 comments on commit 073c32a

Please sign in to comment.