From bbd18943c6c00fb1386ecaaf6771a54f780ebf62 Mon Sep 17 00:00:00 2001 From: Tom Forbes Date: Wed, 6 Jan 2021 17:11:33 +0000 Subject: [PATCH] Used GitHub actions for JavaScript tests. --- .editorconfig | 3 +++ .github/workflows/tests.yml | 25 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.editorconfig b/.editorconfig index 4ee6cd0253..fa6c23c1fc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -42,3 +42,6 @@ indent_style = tab [docs/**.txt] max_line_length = 79 + +[*.yml] +indent_size = 2 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000000..6ddd70a2bd --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,25 @@ +name: Tests + +on: + pull_request: + +jobs: + javascript-tests: + runs-on: ubuntu-latest + name: JavaScript tests + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '12' + - name: Cache dependencies + uses: actions/cache@v2 + with: + path: ~/.npm + key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} + restore-keys: | + ${{ runner.os }}-node- + - run: npm install + - run: npm test