Skip to content

Commit

Permalink
[feature] CI with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
williambelle committed Jan 16, 2025
1 parent 4336bf9 commit f653fd2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
name: Test

steps:
- name: Clone repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 20

- name: Install meteor
run: |
curl https://install.meteor.com | /bin/sh
export PATH=$HOME/.meteor:$PATH
- name: Test
run: |
cd app/
npm i
npm run test

0 comments on commit f653fd2

Please sign in to comment.