From c3b828ce2b8e2f181cf5672ab8e0f20fda005bb2 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Tue, 14 Jul 2020 13:10:32 +0200 Subject: [PATCH] update workflows --- .github/workflows/ci.yml | 55 +++++++++++++++++++++++++++++++++ .github/workflows/run-tests.yml | 23 -------------- 2 files changed, 55 insertions(+), 23 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/run-tests.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..cce651ac --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,55 @@ +name: ci + +on: [push, pull_request] + +jobs: + audit: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x] + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: yarn install + - run: yarn build:packages + - run: yarn audit-ci + + lint: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x] + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: yarn install + - run: yarn build:packages + - run: yarn lint + + test: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.x, 14.x] + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: yarn install + - run: yarn build:packages + - run: yarn test diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml deleted file mode 100644 index b169127f..00000000 --- a/.github/workflows/run-tests.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: run-tests - -on: [push, pull_request] - -jobs: - test: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [10.x, 12.x, 14.x] - - steps: - - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: yarn install - - run: yarn build:packages - - run: yarn audit-ci - - run: yarn lint - - run: yarn test