Skip to content

Commit

Permalink
chore: Add test workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvuckovic committed Apr 4, 2024
1 parent 5572420 commit 4b14bc9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: test

# Controls when the action will run.
# Triggers the workflow on all pushes, except on tag creation.
on:
push:
branches:
- '**'
tags-ignore:
- '**'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Setup 🔧
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn

- name: Install 📦
run: yarn install

- name: Test ✅
run: yarn coverage

- name: Build ⚙️
run: yarn build

0 comments on commit 4b14bc9

Please sign in to comment.