Skip to content

Commit

Permalink
feat: setup action for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszsokola committed Dec 25, 2023
1 parent 27a0439 commit ab95a29
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: test

on: push

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Setup Node.js ⚙️ - Cache dependencies ⚡ - Install dependencies 🔧
uses: ./.github/workflows/actions/setup_node-cache_dep-install_dep

- name: Test 🧪
run: npm run test

0 comments on commit ab95a29

Please sign in to comment.