Skip to content

Add files via upload #238

Add files via upload

Add files via upload #238

Workflow file for this run

name: CI
on:
push:
branches:
- main
env:
node_version: 16
CI: true
jobs:
Format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v2
with:
node-version: ${{ env.node_version }}
- run: yarn --frozen-lockfile
- run: yarn format
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: '[ci] format addresses'
branch: ${{ github.head_ref }}
push_options: --force