Skip to content

Bump @seamapi/types from 1.253.0 to 1.258.2 in the seam group #444

Bump @seamapi/types from 1.253.0 to 1.258.2 in the seam group

Bump @seamapi/types from 1.253.0 to 1.258.2 in the seam group #444

Workflow file for this run

name: Validate
on:
push:
branches:
- "**" # all branches
- "!main"
pull_request:
branches:
- main
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://npm.pkg.github.com
- name: NPM Install
run: npm ci --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.GWM_GH_TOKEN}}
- name: Build
run: npm run build
- name: Check types...
run: npm run typecheck
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://npm.pkg.github.com
- name: NPM Install
run: npm ci --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.GWM_GH_TOKEN}}
- name: Format...
run: npm run format
- name: Commit and push changes (if any)
uses: stefanzweifel/[email protected]
id: auto_commit_action
with:
commit_user_name: seambot
commit_user_email: [email protected]
commit_author: Seam Bot <[email protected]>
commit_message: ci - format code
- name: Success
if: steps.auto_commit_action.outputs.changes_detected == 'false'
run: echo "Format check... PASS!"
- name: Fail
if: steps.auto_commit_action.outputs.changes_detected == 'true'
run: echo "Fixed formatting, and pushed changes" && exit 1