From b3f3ce25ddd2a8e91f0216b80d5ee96f290fd6c7 Mon Sep 17 00:00:00 2001 From: Jan Date: Tue, 24 Dec 2019 18:25:44 -0600 Subject: [PATCH] :construction_worker: Automatically run tests --- .github/workflows/tests.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000000..adb4812df2 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,27 @@ +name: Node CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x] + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: npm install, build, and test + run: | + npm install + npm run bootstrap + npm run build --if-present + npm test + env: + CI: true