Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "CI / Feature"

on:
push:
branches:
- feature*
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
use-library-js-feature:
permissions:
packages: read
contents: read
actions: write
checks: write
uses: MatrixAI/.github/.github/workflows/library-js-feature.yml@feature-actions
28 changes: 28 additions & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "CI / Staging"

on:
push:
branches:
- staging
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
use-library-js-staging:
permissions:
packages: read
contents: write
actions: write
checks: write
pull-requests: write
uses: MatrixAI/.github/.github/workflows/library-js-staging.yml@feature-actions
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}

15 changes: 15 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "CI / Tag"

on:
push:
tags:
- 'v*.*.*'
workflow_dispatch:

jobs:
use-library-js-tag:
permissions:
packages: read
contents: read
actions: write
uses: MatrixAI/.github/.github/workflows/library-js-tag.yml@feature-actions
302 changes: 0 additions & 302 deletions .gitlab-ci.yml

This file was deleted.

5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# js-errors

staging:[![pipeline status](https://gitlab.com/MatrixAI/open-source/js-errors/badges/staging/pipeline.svg)](https://gitlab.com/MatrixAI/open-source/js-errors/commits/staging)
master:[![pipeline status](https://gitlab.com/MatrixAI/open-source/js-errors/badges/master/pipeline.svg)](https://gitlab.com/MatrixAI/open-source/js-errors/commits/master)

Exception system with error chaining.

## Installation
Expand All @@ -13,7 +10,7 @@ npm install --save @matrixai/errors

## Development

Run `nix-shell`, and once you're inside, you can use:
Run `nix develop`, and once you're inside, you can use:

```sh
# install (or reinstall packages from package.json)
Expand Down
Loading