Skip to content

Commit

Permalink
feat(ctp.alumni.newsletter): slackbot implementation of ctp.alumni.ne… (
Browse files Browse the repository at this point in the history
#25)

* feat(ctp.alumni.newsletter): slackbot implementation of ctp.alumni.newsletter

* feat(ctp.alumni.newsletter): updates to newsletter

* feat(ctp.alumni.newsletter): included google form question

* fix(security update)

* feat(updated ctp.newsletter image)

Co-authored-by: Samuel Witke <switke@signifyhealth.com>
  • Loading branch information
SamuelWitke and Samuel Witke authored Nov 29, 2021
1 parent dd76833 commit 36a013c
Show file tree
Hide file tree
Showing 23 changed files with 61,505 additions and 27,625 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build and Deploy
on:
push:
branches:
- main
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
Expand All @@ -22,7 +22,7 @@ jobs:
run: |
npm ci
npm run affected:test
npm run build
npm run affected:build
npm run dep-graph:build
mv ./apps/ctp.alumni.slack.code-of-conduct ./apps/ctp.alumni.app/public
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/out-tsc

# dependencies
/node_modules
node_modules

# IDEs and editors
/.idea
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = { projects: '<rootDir>/libs/ctp.alumni.advice' };
module.exports = { projects: '<rootDir>/libs/ctp.alumni.newsletter' };
2 changes: 1 addition & 1 deletion libs/ctp.alumni.advice/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "@cuny-tech-prep/ctp.alumni.advice",
"name": "@cunytechprep/ctp.alumni.advice",
"version": "0.0.1"
}
12 changes: 12 additions & 0 deletions libs/ctp.alumni.newsletter/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"presets": [
[
"@nrwl/react/babel",
{
"runtime": "automatic",
"importSource": "jsx-slack"
}
]
],
"plugins": []
}
18 changes: 18 additions & 0 deletions libs/ctp.alumni.newsletter/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": ["plugin:@nrwl/nx/react", "../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"rules": {}
}
]
}
7 changes: 7 additions & 0 deletions libs/ctp.alumni.newsletter/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ctp.alumni.newsletter

This library was generated with [Nx](https://nx.dev).

## Running unit tests

Run `nx test ctp.alumni.newsletter` to execute the unit tests via [Jest](https://jestjs.io).
11 changes: 11 additions & 0 deletions libs/ctp.alumni.newsletter/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
displayName: 'ctp.alumni.newsletter',
preset: '../../jest.preset.js',
transform: {
'^.+\\.[tj]sx?$': 'babel-jest',
},
testTimeout: 20000,
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
coverageDirectory: '../../coverage/libs/ctp.alumni.newsletter',
testEnvironment: "node"
};
Loading

0 comments on commit 36a013c

Please sign in to comment.