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()) 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 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