From c33720cbb66e39963bf6514ba3b30f8243d7ab05 Mon Sep 17 00:00:00 2001 From: Arthur-Oksuz Date: Thu, 5 Jun 2025 12:01:54 +0200 Subject: [PATCH] Create testing.yaml --- .github/workflows/testing.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/testing.yaml diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml new file mode 100644 index 0000000..f96f2d3 --- /dev/null +++ b/.github/workflows/testing.yaml @@ -0,0 +1,20 @@ +name: testing yaml for github + +on: + push: + branches: + - main + + steps: + - name: Check out Git repository + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v1 + with: + node-version: 14 + - name: Install dependencies with caching + uses: bahmutov/npm-install@v1 + + +