From 53fe38483c665ea0001a1057ac4204a3f61abb56 Mon Sep 17 00:00:00 2001 From: Theo Ephraim Date: Sun, 12 May 2024 12:21:32 -0700 Subject: [PATCH] testing out GH Actions instead of CircleCI --- .circleci/config.yml | 45 ------------------------- .github/workflows/ci.yml | 71 ++++++++++++++++++++++++++++++++++++++++ README.md | 2 +- docs/README.md | 36 ++++++++++---------- 4 files changed, 91 insertions(+), 63 deletions(-) delete mode 100644 .circleci/config.yml create mode 100644 .github/workflows/ci.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 580be6f5..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,45 +0,0 @@ -version: 2.1 - -jobs: - build: - docker: - - image: node:18 - - steps: - - checkout - - restore_cache: - name: Restore pnpm Package Cache - keys: - - pnpm-packages-{{ checksum "pnpm-lock.yaml" }} - - run: - name: Install pnpm package manager - command: | - curl -L https://pnpm.js.org/pnpm.js | node - add --global pnpm@7 - - run: - name: Install Dependencies - command: | - pnpm install - - save_cache: - name: Save pnpm Package Cache - key: pnpm-packages-{{ checksum "pnpm-lock.yaml" }} - paths: - - node_module - - - - run: # RUN LINTER - name: ESLint - command: pnpm run lint --format junit -o reports/junit/js-lint-results.xml - - run: # RUN TESTS - name: Tests - command: pnpm run test --ci --runInBand --reporters=default --reporters=jest-junit --coverage - environment: - JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml" - - - store_test_results: - path: reports/junit - - store_artifacts: - path: reports/junit - - store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ - path: coverage - prefix: coverage - \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..d49b002b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,71 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: CI + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + +jobs: + ci: + runs-on: ubuntu-latest + + # strategy: + # matrix: + # node-version: [20.x] # [14.x, 16.x, 18.x] + # # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 20.x + + - uses: pnpm/action-setup@v4 + name: Install pnpm + with: + version: 8 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: ${{ env.STORE_PATH }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: pnpm install + + - name: Lint + run: pnpm run lint --format junit -o reports/junit/js-lint-results.xml + + - name: Test + run: pnpm run test --ci --runInBand --reporters=default --reporters=jest-junit --coverage + env: + NODE_ENV: ci + JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml" + + - uses: actions/upload-artifact@v4 + with: + name: reports + path: reports/junit + + - uses: actions/upload-artifact@v4 + with: + name: coverage + path: coverage + + diff --git a/README.md b/README.md index 0e623c82..bb6c4957 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > The most popular [Google Sheets API](https://developers.google.com/sheets/api/guides/concepts) wrapper for javascript / typescript [![NPM version](https://img.shields.io/npm/v/google-spreadsheet)](https://www.npmjs.com/package/google-spreadsheet) -[![CircleCI](https://circleci.com/gh/theoephraim/node-google-spreadsheet.svg?style=shield)](https://circleci.com/gh/theoephraim/node-google-spreadsheet) +[![CI status](https://github.com/theoephraim/node-google-spreadsheet/actions/workflows/ci.yml/badge.svg)](https://github.com/theoephraim/node-google-spreadsheet/actions/workflows/ci.yml) [![Known Vulnerabilities](https://snyk.io/test/github/theoephraim/node-google-spreadsheet/badge.svg?targetFile=package.json)](https://snyk.io/test/github/theoephraim/node-google-spreadsheet?targetFile=package.json) [![NPM](https://img.shields.io/npm/dw/google-spreadsheet)](https://www.npmtrends.com/google-spreadsheet) diff --git a/docs/README.md b/docs/README.md index 734237af..37493d97 100644 --- a/docs/README.md +++ b/docs/README.md @@ -3,10 +3,11 @@ _Welcome to the docs site for_ # google-spreadsheet + > The most popular [Google Sheets API](https://developers.google.com/sheets/api/guides/concepts) wrapper for javascript / typescript [![NPM version](https://img.shields.io/npm/v/google-spreadsheet)](https://www.npmjs.com/package/google-spreadsheet) -[![CircleCI](https://circleci.com/gh/theoephraim/node-google-spreadsheet.svg?style=shield)](https://circleci.com/gh/theoephraim/node-google-spreadsheet) +[![CI status](https://github.com/theoephraim/node-google-spreadsheet/actions/workflows/ci.yml/badge.svg)](https://github.com/theoephraim/node-google-spreadsheet/actions/workflows/ci.yml) [![Known Vulnerabilities](https://snyk.io/test/github/theoephraim/node-google-spreadsheet/badge.svg?targetFile=package.json)](https://snyk.io/test/github/theoephraim/node-google-spreadsheet?targetFile=package.json) [![NPM](https://img.shields.io/npm/dw/google-spreadsheet)](https://www.npmtrends.com/google-spreadsheet) @@ -20,37 +21,35 @@ _Welcome to the docs site for_ **Docs site -** Full docs available at [https://theoephraim.github.io/node-google-spreadsheet](https://theoephraim.github.io/node-google-spreadsheet) -------------- +--- > 🌈 **Installation** - `pnpm i google-spreadsheet`
(or `npm i google-spreadsheet --save` or `yarn add google-spreadsheet`) ## Examples + _The following examples are meant to give you an idea of just some of the things you can do_ -> **IMPORTANT NOTE** - To keep the examples concise, I'm calling await [at the top level](https://v8.dev/features/top-level-await) which is not allowed by default in most versions of node. If you need to call await in a script at the root level, you must instead wrap it in an async function like so: +> **IMPORTANT NOTE** - To keep the examples concise, I'm calling await [at the top level](https://v8.dev/features/top-level-await) which is not allowed in some older versions of node. If you need to call await in a script at the root level and your environment does not support it, you must instead wrap it in an async function like so: ```javascript -(async function() { +(async function () { await someAsyncFunction(); -}()); +})(); ``` - ### The Basics + ```js import { GoogleSpreadsheet } from 'google-spreadsheet'; import { JWT } from 'google-auth-library'; - // Initialize auth - see https://theoephraim.github.io/node-google-spreadsheet/#/guides/authentication const serviceAccountAuth = new JWT({ // env var values here are copied from service account credentials generated by google // see "Authentication" section in docs for more info email: process.env.GOOGLE_SERVICE_ACCOUNT_EMAIL, key: process.env.GOOGLE_PRIVATE_KEY, - scopes: [ - 'https://www.googleapis.com/auth/spreadsheets', - ], + scopes: ['https://www.googleapis.com/auth/spreadsheets'], }); const doc = new GoogleSpreadsheet('', serviceAccountAuth); @@ -67,14 +66,15 @@ console.log(sheet.rowCount); const newSheet = await doc.addSheet({ title: 'another sheet' }); await newSheet.delete(); ``` + More info: + - [GoogleSpreadsheet](https://theoephraim.github.io/node-google-spreadsheet/#/classes/google-spreadsheet) - [GoogleSpreadsheetWorksheet](https://theoephraim.github.io/node-google-spreadsheet/#/classes/google-spreadsheet-worksheet) - [Authentication](https://theoephraim.github.io/node-google-spreadsheet/#/guides/authentication) - - ### Working with rows + ```js // if creating a new sheet, you can set the header row const sheet = await doc.addSheet({ headerValues: ['name', 'email'] }); @@ -91,7 +91,7 @@ const rows = await sheet.getRows(); // can pass in { limit, offset } // read/write row values console.log(rows[0].get('name')); // 'Larry Page' -rows[1].set('email') = 'sergey@abc.xyz'; // update a value +rows[1].set('email', 'sergey@abc.xyz'); // update a value rows[2].assign({ name: 'Sundar Pichai', email: 'sundar@google.com' }); // set multiple values await rows[2].save(); // save updates on a row await rows[2].delete(); // delete a row @@ -112,12 +112,12 @@ userRows[0].get('badColumn'); // <- will throw a type error ``` More info: + - [GoogleSpreadsheetWorksheet > Working With Rows](https://theoephraim.github.io/node-google-spreadsheet/#/classes/google-spreadsheet-worksheet#working-with-rows) - [GoogleSpreadsheetRow](https://theoephraim.github.io/node-google-spreadsheet/#/classes/google-spreadsheet-row) - - ### Working with cells + ```js await sheet.loadCells('A1:E10'); // loads range of cells into local cache - DOES NOT RETURN THE CELLS console.log(sheet.cellStats); // total cells, loaded, how many non-empty @@ -134,11 +134,12 @@ a1.textFormat = { bold: true }; c6.note = 'This is a note!'; await sheet.saveUpdatedCells(); // save all updates in one call ``` + More info: + - [GoogleSpreadsheetWorksheet > Working With Cells](https://theoephraim.github.io/node-google-spreadsheet/#/classes/google-spreadsheet-worksheet#working-with-cells) - [GoogleSpreadsheetCell](https://theoephraim.github.io/node-google-spreadsheet/#/classes/google-spreadsheet-cell) - ### Managing docs and sharing ```js @@ -165,6 +166,7 @@ await newDoc.delete(); ``` ## Why? + > **This module provides an intuitive wrapper around Google's API to simplify common interactions** While Google's v4 sheets API is much easier to use than v3 was, the official [googleapis npm module](https://www.npmjs.com/package/googleapis) is a giant autogenerated meta-tool that handles _every Google product_. The module and the API itself are awkward and the docs are pretty terrible, at least to get started. @@ -173,7 +175,6 @@ While Google's v4 sheets API is much easier to use than v3 was, the official [go This module makes trade-offs for simplicity of the interface. Google's API provides a mechanism to make many requests in parallel, so if speed and efficiency are extremely important to your use case, you may want to use their API directly. There are also many lesser-used features of their API that are not implemented here yet. - ## Support & Contributions This module was written and is actively maintained by [Theo Ephraim](https://theoephraim.com). @@ -193,4 +194,5 @@ The docs site is generated using [docsify](https://docsify.js.org). To preview a The content lives in markdown files in the docs folder. ## License + This is free and unencumbered public domain software. For more info, see https://unlicense.org.