Skip to content

Commit

Permalink
ci: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox committed Feb 27, 2023
1 parent 4c36387 commit 5129ab0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,26 @@
name: Test

on:
push:
branches:
- master
pull_request:

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: Install dependencies
run: npm ci

- name: Run test
run: npm run test

- name: Build the dist/index.js
run: npm run build

0 comments on commit 5129ab0

Please sign in to comment.