From 49f02a8b04ee88147f06333bfcd9d723e56043c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filipe=20N=C3=A9vola?= Date: Sun, 13 Oct 2024 20:00:49 -0300 Subject: [PATCH] Test github action --- .github/workflows/collections-test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/collections-test.yml diff --git a/.github/workflows/collections-test.yml b/.github/workflows/collections-test.yml new file mode 100644 index 0000000..4f17875 --- /dev/null +++ b/.github/workflows/collections-test.yml @@ -0,0 +1,23 @@ +name: Collections Package Test + +on: + push: + paths: + - 'collections/**' + pull_request: + paths: + - 'collections/**' + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Install Meteor + uses: meteorengineer/setup-meteor@v1 + with: + meteor-release: '3.0.3' + + - name: Run package tests + run: meteor test-packages ./collections