From 14dcf7fcc48aa0c7993c02ea6d9e884b34f8cdd3 Mon Sep 17 00:00:00 2001 From: "github@esslinger.dev" Date: Sat, 8 Oct 2022 12:06:02 +0200 Subject: [PATCH 1/2] wip --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..ef33bf62 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + test: + runs-on: ubuntu-22.04 + steps: + - uses: actions/setup-node@v2 + with: + node-version: "16.x" + - run: npm ci + - run: npm test From a3655bba91012c8184c9a18c5611cf4d4688b3ce Mon Sep 17 00:00:00 2001 From: "github@esslinger.dev" Date: Sat, 8 Oct 2022 12:10:44 +0200 Subject: [PATCH 2/2] ci: add missing checkout step --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef33bf62..6a8f7e02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ jobs: test: runs-on: ubuntu-22.04 steps: + - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: "16.x"