From 01a3c24292289ea51555c51ee5e647df22da19b0 Mon Sep 17 00:00:00 2001 From: HormigasAIS Date: Wed, 29 Jan 2025 23:39:18 -0600 Subject: [PATCH 1/3] Create node.js.yml '=chrisquionez354@gmail.com --- .github/workflows/node.js.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 000000000000..f771a33f4308 --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,33 @@ +# import requests headers = { "Authorization": 4d5a2157cfe41447185baa326049439d11d1c776 response = requests.get("https://api.hypothes.is/api/search", headers=headers) print(response.json()) + 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: Node.js CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npm ci + - run: npm run build --if-present + - run: npm test +import requests headers = { "Authorization": "Bearer TU_TOKEN_DE_API", } response = requests.get("https://api.hypothes.is/api/search", headers=headers) print(response.json()) From 4763c03ed4fcd1c938f31a9d648489f53e3c1fd0 Mon Sep 17 00:00:00 2001 From: HormigasAIS Date: Fri, 21 Feb 2025 22:52:26 -0600 Subject: [PATCH 2/3] Actualizar $ ssh -T git@github.com # Hi HormigasAIS-ux! You've successfully authenticated, but GitHub does not # provide shell access. https://docs.github.com/es/github/getting-started-with-github/caching-your-github-credentials-in-git --- ~/.ssh/config | 1 + 1 file changed, 1 insertion(+) create mode 100644 ~/.ssh/config diff --git a/~/.ssh/config b/~/.ssh/config new file mode 100644 index 000000000000..5e105f6a9063 --- /dev/null +++ b/~/.ssh/config @@ -0,0 +1 @@ +Host github.com HormigasAIS-ux ssh.github.com Port 443 User git From 731a5d26196c4c555d7fd569c07baf427a152d0e Mon Sep 17 00:00:00 2001 From: HormigasAIS Date: Sun, 23 Feb 2025 01:37:15 -0600 Subject: [PATCH 3/3] Create npm-grunt.yml --- .github/workflows/npm-grunt.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/npm-grunt.yml diff --git a/.github/workflows/npm-grunt.yml b/.github/workflows/npm-grunt.yml new file mode 100644 index 000000000000..5ef7a9ae1d1d --- /dev/null +++ b/.github/workflows/npm-grunt.yml @@ -0,0 +1,28 @@ +name: NodeJS with Grunt + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + grunt