From 713a1628093ee4b4bf98aa6e2e32e3908e6f0b31 Mon Sep 17 00:00:00 2001 From: Raymon Zutekouw Date: Sun, 10 Jan 2021 19:23:36 +0100 Subject: [PATCH] Create apmCI.yml --- .github/workflows/apmCI.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/apmCI.yml diff --git a/.github/workflows/apmCI.yml b/.github/workflows/apmCI.yml new file mode 100644 index 0000000..3b940e7 --- /dev/null +++ b/.github/workflows/apmCI.yml @@ -0,0 +1,27 @@ +name: APM CI + +on: + push: + branches: [ master, beta ] + pull_request: + branches: [ master, beta ] + +jobs: + Test: + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + channel: [stable, beta] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 + - name: Download Atom + run: npx setup-atom ${{ matrix.channel }} + - name: Atom version + run: atom -v + - name: APM version + run: apm -v + - name: Install dependencies + run: apm ci + - name: Run tests 🧪 + run: atom --test spec