Skip to content

Bump typescript from 4.6.4 to 5.1.6 #22

Bump typescript from 4.6.4 to 5.1.6

Bump typescript from 4.6.4 to 5.1.6 #22

Workflow file for this run

name: 'Build'
on:
pull_request:
push:
paths-ignore:
- '**.md'
- '**.org'
branches:
- master
workflow_dispatch:
jobs:
dist:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run-script build
- name: Set git config
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Push dist
continue-on-error: true
run: |
git pull
git add .
git commit -m "Update dist"
git push