Skip to content

Resource error handling #119

Resource error handling

Resource error handling #119

Workflow file for this run

name: CI
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm test
- name: tsc
uses: icrawl/action-tsc@v1
- name: Configure Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Push changes
run: |
git add -A
git commit -m "chore: commit changes from build"
git push