Skip to content

Commit

Permalink
Merge pull request #831 from Shuttlerock/sr-devops/release-candidate
Browse files Browse the repository at this point in the history
Release Candidate 2023-09-11-0453 (Automatic Armadillo)
  • Loading branch information
dperrett authored Sep 11, 2023
2 parents 21aca04 + f847a5c commit b361e78
Show file tree
Hide file tree
Showing 3 changed files with 446 additions and 296 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: actions (test)

# Cancel in-progress jobs.
concurrency:
group: actions-${{ github.ref }}
cancel-in-progress: true

on: [push]

jobs:
test:
runs-on: ubuntu-latest

env:
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
FORCE_COLOR: 1

defaults:
run:
working-directory: ./

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16

- name: Docker Login
run: docker login --username "$DOCKERHUB_USERNAME" --password "$DOCKERHUB_TOKEN"

- name: install
run: yarn install

- name: clean
run: yarn clean

- name: build
run: yarn build

- name: clean
run: yarn package

- name: test
run: yarn test

- name: lint
run: yarn lint

- name: format-check
run: yarn format-check
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@actions/github": "^5.0.0",
"@octokit/rest": "^18.0.9",
"@slack/web-api": "^6.7.1",
"jira-client": "^8.0.0",
"jira-client": "^8.2.2",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"node-fetch": "2",
Expand All @@ -69,7 +69,7 @@
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-jsdoc": "^39.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
Expand All @@ -79,7 +79,7 @@
"jest": "^26.6.3",
"jest-circus": "^27.1.0",
"js-yaml": "^4.1.0",
"lint-staged": "^12.3.7",
"lint-staged": "^14.0.1",
"prettier": "2.5.1",
"ts-jest": "^26.5.6",
"tscpaths": "^0.0.9",
Expand Down
Loading

0 comments on commit b361e78

Please sign in to comment.