Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Apr 13, 2024
1 parent 29d93ec commit 007fb51
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run Tests

on:
push:

pull_request:
types: [opened, reopened]

workflow_dispatch:

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

- name: node
uses: actions/setup-node@v4
with:
node-version: 20.9.0

- name: Deps
run: |
yarn
yarn build
- name: Test
run: |
yarn test

0 comments on commit 007fb51

Please sign in to comment.