Skip to content

Commit

Permalink
Attempt with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
macmv committed Sep 13, 2024
1 parent a3b16c2 commit 020d597
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on: [push]

jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install
uses: borales/actions-yarn@v4
with:
cmd: install

- name: Tests
uses: borales/actions-yarn@v4
with:
cmd: test

0 comments on commit 020d597

Please sign in to comment.