Improve gas coord state compact #301
Workflow file for this run
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: Forge Unit Tests | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| CI: true | |
| steps: | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "25" | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install deps | |
| run: | | |
| npm ci | |
| - name: Run unit tests | |
| run: npm test |