diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100755 index 78c4e41..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,38 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: circleci/node - steps: - # Checkout repository - - checkout - - # Restore cache - - restore_cache: - key: yarn-cache-{{ checksum "yarn.lock" }} - - # Install dependencies - - run: - name: Install Dependencies - command: NODE_ENV=dev yarn - - # Keep cache - - save_cache: - key: yarn-cache-{{ checksum "yarn.lock" }} - paths: - - "node_modules" - - # Lint - - run: - name: Lint - command: yarn lint - - # Tests - - run: - name: Tests - command: yarn jest - - # Coverage - - run: - name: Coverage - command: yarn codecov diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f0e9971 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,45 @@ +name: ci + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + ci: + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ubuntu-latest] + node: [12] + + steps: + - uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node }} + + - name: checkout + uses: actions/checkout@master + + - name: cache node_modules + uses: actions/cache@v1 + with: + path: node_modules + key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }} + + - name: Install dependencies + if: steps.cache.outputs.cache-hit != 'true' + run: yarn + + - name: Lint + run: yarn lint + + - name: Test + run: yarn jest + + - name: Coverage + uses: codecov/codecov-action@v1