Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
noisekit committed Aug 11, 2023
1 parent ba926c1 commit f3f070e
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-packages.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Validate yarn.lock and cache"

on: [pull_request]
#on: [pull_request]

jobs:
check:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Lint
on: [push]
#on: [push]
jobs:
lint:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/simulate-release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Simulate Release

on:
pull_request: {}
# pull_request: {}
push:
branches:
- "main"
Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,31 +30,31 @@ jobs:
perps-market-subgraph,
]
include:
- package: core-contracts
workspace: "@synthetixio/core-contracts"
coverage-file: utils/core-contracts/coverage.json
# - package: core-contracts
# workspace: "@synthetixio/core-contracts"
# coverage-file: utils/core-contracts/coverage.json
- package: core-utils
workspace: "@synthetixio/core-utils"
coverage-file: utils/core-utils/coverage/lcov.info
- package: core-modules
workspace: "@synthetixio/core-modules"
coverage-file: utils/core-modules/coverage.json
- package: sample-project
workspace: "@synthetixio/sample-project"
- package: oracle-manager
workspace: "@synthetixio/oracle-manager"
- package: spot-market
workspace: "@synthetixio/spot-market"
- package: perps-market
workspace: "@synthetixio/perps-market"
- package: main
workspace: "@synthetixio/main"
- package: core-subgraph
workspace: "@synthetixio/core-subgraph"
- package: spot-market-subgraph
workspace: "@synthetixio/spot-market-subgraph"
- package: perps-market-subgraph
workspace: "@synthetixio/perps-market-subgraph"
# - package: core-modules
# workspace: "@synthetixio/core-modules"
# coverage-file: utils/core-modules/coverage.json
# - package: sample-project
# workspace: "@synthetixio/sample-project"
# - package: oracle-manager
# workspace: "@synthetixio/oracle-manager"
# - package: spot-market
# workspace: "@synthetixio/spot-market"
# - package: perps-market
# workspace: "@synthetixio/perps-market"
# - package: main
# workspace: "@synthetixio/main"
# - package: core-subgraph
# workspace: "@synthetixio/core-subgraph"
# - package: spot-market-subgraph
# workspace: "@synthetixio/spot-market-subgraph"
# - package: perps-market-subgraph
# workspace: "@synthetixio/perps-market-subgraph"
steps:
- name: Install Foundry (Cannon)
uses: foundry-rs/foundry-toolchain@v1
Expand Down
1 change: 1 addition & 0 deletions utils/core-utils/test/utils/ast/finders.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ describe('utils/ast/finders.ts find AST artifacts', function () {
const contracts = await parseContracts(
path.resolve(__dirname, '..', '..', 'fixtures', 'sample-project')
);
console.log(`contracts`, contracts);
astNodes = Object.values(contracts.asts!);
sources = contracts.asts!;
});
Expand Down

0 comments on commit f3f070e

Please sign in to comment.