From 47d615507cd69655ecccb91c83f0f90b81bba5e9 Mon Sep 17 00:00:00 2001 From: ronskie <140984233+Ronskie0804@users.noreply.github.com> Date: Sat, 20 Apr 2024 22:34:57 +1200 Subject: [PATCH 1/3] Add files via upload --- tea (11).yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tea (11).yaml diff --git a/tea (11).yaml b/tea (11).yaml new file mode 100644 index 0000000..af8c654 --- /dev/null +++ b/tea (11).yaml @@ -0,0 +1,6 @@ +# https://tea.xyz/what-is-this-file +--- +version: 1.0.0 +codeOwners: + - '0xF2E2b2CdEFFC32D24b55AcdE28d8825BA3d36FF9' +quorum: 1 From 28fb0c9b2e21defb44aaf7f7ed84126b294c2b10 Mon Sep 17 00:00:00 2001 From: ronskie <140984233+Ronskie0804@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:02:27 +1200 Subject: [PATCH 2/3] Add files via upload --- tea (14).yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tea (14).yaml diff --git a/tea (14).yaml b/tea (14).yaml new file mode 100644 index 0000000..af8c654 --- /dev/null +++ b/tea (14).yaml @@ -0,0 +1,6 @@ +# https://tea.xyz/what-is-this-file +--- +version: 1.0.0 +codeOwners: + - '0xF2E2b2CdEFFC32D24b55AcdE28d8825BA3d36FF9' +quorum: 1 From a73819b137aaf7dbaaeeffba8b9a7b7bf9b0f7b3 Mon Sep 17 00:00:00 2001 From: ronskie <140984233+Ronskie0804@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:05:48 +1200 Subject: [PATCH 3/3] Create node.js.yml --- .github/workflows/node.js.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 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 0000000..b1ce32d --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,31 @@ +# 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: Node.js CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x, 16.x, 18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npm ci + - run: npm run build --if-present + - run: npm test