Upgrade to NextJS 11 to fix CVEs #416
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: Test | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22.15.0' | |
| - run: npm ci | |
| - run: npm run test | |
| - run: npm run test:e2e | |
| solidity-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '22.15.0' | |
| - run: npm ci | |
| working-directory: ./samples/solidity | |
| - run: npm run compile | |
| working-directory: ./samples/solidity | |
| - run: npm run test | |
| working-directory: ./samples/solidity | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Docker build | |
| run: docker build --build-arg BASE_IMAGE=node:22-alpine3.19 --build-arg BUILD_IMAGE=node:22-alpine3.19 --tag ghcr.io/hyperledger/firefly-tokens-erc20-erc721 . |