Skip to content

Commit

Permalink
ci: add build and test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sampaiodiego committed Jun 27, 2023
1 parent 44f46e1 commit de23ef6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and Test

on:
pull_request:
branches: '**'

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 20

- run: npm ci

- run: npm run lint

- run: npm test

- run: npm run build

0 comments on commit de23ef6

Please sign in to comment.