Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old workflows #1372

Merged
merged 6 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/bugs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Bug
description: Report a bug
title: "Bug: "
labels: ["bug"]
labels: ['bug']
body:
- type: markdown
attributes:
Expand Down
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Feature Request
description: Suggest a feature
labels: ['feature-request']
body:
- type: markdown
attributes:
value: |
Please give your feature request a short and descriptive title.
- type: textarea
id: overview
attributes:
label: Overview
description: General description of the new feature.
validations:
required: true
- type: textarea
id: info
attributes:
label: Additional Info
description: More context and reasoning, expected implementation details, etc.
validations:
required: false
3 changes: 2 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@



## Issue / Notion doc (if applicable)
## Issue



Expand All @@ -16,3 +16,4 @@

## Screenshots (if applicable)


27 changes: 0 additions & 27 deletions .github/workflows/release-netlify-dev.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/release-netlify-prod.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/release-netlify-staging.yaml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Set up the required Node.js version
- name: Set up node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm run test