From 76c11fb0e2016c1b587109da9d23745fe5e1d218 Mon Sep 17 00:00:00 2001 From: GODrums Date: Tue, 7 Jul 2026 20:14:41 +0200 Subject: [PATCH] add testing ci workflow --- .github/workflows/test.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..6158a421 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,30 @@ +name: Extension Test + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + test: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [24.x] + + steps: + - uses: actions/checkout@v6 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v6 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + + - name: Install Dependencies + run: npm ci + + - name: Run Tests + run: npm test