-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54f3c01
commit c2800ee
Showing
8 changed files
with
38 additions
and
199 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 'PR Checks' | ||
name: "PR Checks" | ||
|
||
on: | ||
pull_request: | ||
|
@@ -8,6 +8,10 @@ concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
NODE_VERSION: 20.11.0 | ||
PNPM_VERSION: 9.5.0 | ||
|
||
jobs: | ||
validate-title: | ||
name: Validate PR Title | ||
|
@@ -23,13 +27,13 @@ jobs: | |
outputs: | ||
changed: ${{ steps.packages-changed.outputs.any_changed }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Check external packages changes | ||
id: packages-changed | ||
uses: tj-actions/[email protected] | ||
with: | ||
files: | | ||
**/packages/connectors/** | ||
**/packages/fuel-streams/** | ||
validate-changeset: | ||
name: Validate PR Changeset | ||
|
@@ -38,15 +42,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: CI Setup | ||
- name: Setup Node | ||
uses: FuelLabs/github-actions/setups/node@master | ||
with: | ||
node-version: 20.11.0 | ||
pnpm-version: 9.5.0 | ||
node-version: ${{ env.NODE_VERSION }} | ||
pnpm-version: ${{ env.PNPM_VERSION }} | ||
|
||
- name: Validate Changeset | ||
run: pnpm changeset status --since=origin/${{ github.base_ref }} | ||
|
@@ -56,11 +60,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: FuelLabs/github-actions/setups/node@master | ||
with: | ||
node-version: 20.11.0 | ||
pnpm-version: 9.5.0 | ||
node-version: ${{ env.NODE_VERSION }} | ||
pnpm-version: ${{ env.PNPM_VERSION }} | ||
- run: pnpm audit --prod | ||
|
||
lint: | ||
|
@@ -72,13 +76,13 @@ jobs: | |
contents: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node | ||
uses: FuelLabs/github-actions/setups/node@master | ||
with: | ||
node-version: 20.11.0 | ||
pnpm-version: 9.5.0 | ||
node-version: ${{ env.NODE_VERSION }} | ||
pnpm-version: ${{ env.PNPM_VERSION }} | ||
|
||
- name: Run lint & ts:check | ||
run: | | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
{ | ||
"name": "@fuels/streams", | ||
"version": "0.0.1", | ||
"private": true, | ||
"description": "Official data streaming Typescript library for Fuel Network", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"homepage": "https://github.com/FuelLabs/fuel-streams-js", | ||
"main": "./src/index.ts", | ||
"exports": { | ||
".": "./src/index.ts" | ||
}, | ||
"publishConfig": { | ||
"private": false, | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
|