From 20389063fea6797fe5fc8d668b450db001f6689c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Tue, 23 Apr 2024 14:59:44 +0200 Subject: [PATCH] adapt ci meteor selftest on Windows to GithubActions --- .github/workflows/meteor-selftest-windows.yml | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/meteor-selftest-windows.yml diff --git a/.github/workflows/meteor-selftest-windows.yml b/.github/workflows/meteor-selftest-windows.yml new file mode 100644 index 0000000000..4a033d6563 --- /dev/null +++ b/.github/workflows/meteor-selftest-windows.yml @@ -0,0 +1,48 @@ +name: Meteor Selftest Windows + +on: + pull_request: + types: + - opened + - reopened + - synchronize + branches: + - release-3.0 + push: + branches: + - release-3.0 + +jobs: + test: + runs-on: windows-2019 + + strategy: + matrix: + platform: + - x64 + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: 20.x + + - name: Install dependencies + run: | + .\scripts\windows\appveyor\install.ps1 + + - name: Run tests + run: | + .\scripts\windows\appveyor\test.ps1 + + - name: Cache dependencies + uses: actions/cache@v2 + with: + path: | + .\dev_bundle + .\.babel-cache + .\.meteor + key: ${{ runner.os }}-meteor-${{ hashFiles('**/package-lock.json') }}