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
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## What Changed & Why
Explain what changed and why.

## Related issues
Link to related issues in this or other repositories (if any)

## PR Checklist
- [ ] Add tests
- [ ] Add documentation
- [ ] Prefix documentation-only commits with [DOC]

## People
Mention people who would be interested in the changeset (if any)
40 changes: 40 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Continuous Integration

on:
push:
pull_request:

jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn test

test-floating:
name: Floating Dependencies
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: install dependencies
run: yarn install --no-lockfile
- name: test
run: yarn test
28 changes: 23 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"name": "ember-cli-deploy-compress",
"name": "@ember-cli-deploy/ember-cli-deploy-compress",
"version": "0.4.0",
"description": "Ember CLI Deploy plugin to compress files in gzip or brotli automatically depending on supported browsers",
"description": "Ember CLI Deploy plugin to compress files in gzip or brotli automatically depending on supported browsers (forked from Dockyard)",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"start": "ember server",
"build": "ember build",
"release": "release-it",
"test": "mocha tests && eslint index.js tests/**/*.js"
},
"repository": "https://github.com/dockyard/ember-cli-deploy-compress",
"repository": "https://github.com/ember-cli-deploy/ember-cli-deploy-compress",
"engines": {
"node": "14.* || 16.* || 18.* || >= 20.*"
},
Expand All @@ -28,6 +27,8 @@
"mocha": "^5.2.0",
"multiline": "^1.0.2",
"node-zopfli-es": "^2.0.2",
"release-it": "14.11.8",
"release-it-lerna-changelog": "^3.1.0",
"rimraf": "^2.3.4"
},
"keywords": [
Expand All @@ -44,5 +45,22 @@
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": false
}
},
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true
}
}
}
Loading