only set enforced options on chains where it has not been set #24
This file contains hidden or 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
| name: Compile/Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| compile-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| registry-url: https://npm.pkg.github.com/ | |
| scope: '@gammaswap' | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - run: yarn install | |
| env: | |
| NODE_AUTH_TOKEN: ${{secrets.GS_TOKEN}} | |
| - run: yarn run test |