From ad6e008e1a863d79a5314208ca0a8f415012a0a7 Mon Sep 17 00:00:00 2001 From: Alexander Zeitler Date: Sat, 10 Apr 2021 22:01:29 +0200 Subject: [PATCH] build(ci): use github actions --- .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 0000000..7cc8e74 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: Node.js CI + +on: + push: + branches: + - '*' +jobs: + build: + runs-on: ubuntu-18.04 + name: Test + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: '12' + - run: yarn + - run: yarn test \ No newline at end of file