Skip to content

Instantly share code, notes, and snippets.

@ijlee2
ijlee2 / ci.yml
Last active December 8, 2022 18:38
GitHub Actions workflow for Ember addons (yarn)
# The workflow template is designed for Ember addons.
#
# It assumes certain dependencies and scripts in package.json. If
# they don't apply to your project, feel free to remove irrelevant
# code in the workflow. These can be inferred from the job name.
#
# {
# "scripts": {
# "build": "ember build --environment=production",
# "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
@ijlee2
ijlee2 / ci.yml
Last active December 8, 2022 18:39
GitHub Actions workflow for Ember addons (npm)
# The workflow template is designed for Ember addons.
#
# It assumes certain dependencies and scripts in package.json. If
# they don't apply to your project, feel free to remove irrelevant
# code in the workflow. These can be inferred from the job name.
#
# {
# "scripts": {
# "build": "ember build --environment=production",
# "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
@ijlee2
ijlee2 / ci-cd.yml
Last active December 8, 2022 19:16
GitHub Actions workflow for Ember apps (npm)
# The workflow template is designed for Ember apps.
#
# It assumes certain dependencies and scripts in package.json. If
# they don't apply to your project, feel free to remove irrelevant
# code in the workflow. These can be inferred from the job name.
#
# {
# "scripts": {
# "build": "ember build --environment=production",
# "build:test": "ember build --environment=test",
@ijlee2
ijlee2 / ci-cd.yml
Last active August 29, 2023 21:37
GitHub Actions workflow for Ember apps (yarn)
# The workflow template is designed for Ember apps.
#
# It assumes certain dependencies and scripts in package.json. If
# they don't apply to your project, feel free to remove irrelevant
# code in the workflow. These can be inferred from the job name.
#
# {
# "scripts": {
# "build": "ember build --environment=production",
# "build:test": "ember build --environment=test",