fix: Paymaster Proxy URL (#513) #737
This file contains 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: App Styles / Format | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: App Install dependencies | |
working-directory: ./template/web | |
run: yarn --immutable | |
- name: App Stylelint | |
working-directory: ./template/web | |
run: npm run stylelint | |
- name: App Format Check | |
working-directory: ./template/web | |
run: npm run format:check |