Skip to content

Resource error handling #123

Resource error handling

Resource error handling #123

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 run build --if-present
- run: npm test
- uses: EndBug/add-and-commit@v7
with:
default_author: github_actions