Skip to content

suppor permit erc extension #12

suppor permit erc extension

suppor permit erc extension #12

Workflow file for this run

name: Quality gate
on:
push:
permissions:
contents: read
packages: read
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: npm run lint
- run: npm run typecheck
test:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: npm run test
build:
needs:
- test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cat .npmrc.template | sed -e "s/_VALUE_/$NODE_AUTH_TOKEN/" > .npmrc
- run: docker compose -f docker-compose.yml build;