Compare commits

..

No commits in common. "d9d0243c3c3e31e465434ff9663c8f6dd739b47e" and "f812467f5e6e27dd2322fe9b213c7367ecffc43a" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View file

@ -16,14 +16,14 @@ jobs:
- name: Use Node.js - name: Use Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20.x node-version: 18.x
- run: yarn install --frozen-lockfile - run: yarn install --frozen-lockfile
- run: yarn build - run: yarn build
- run: yarn test - run: yarn test
- run: yarn lint - run: yarn lint
- name: "Copy files over to location" - name: "Copy files over to location"
run: rsync -rvzP . ${{ secrets.PROD_REPO_PATH }} run: cp -r . ${{ secrets.PROD_REPO_PATH }}
deploy: deploy:
environment: prod environment: prod

View file

@ -16,14 +16,14 @@ jobs:
- name: Use Node.js - name: Use Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20.x node-version: 18.x
- run: yarn install --frozen-lockfile - run: yarn install --frozen-lockfile
- run: yarn build - run: yarn build
- run: yarn test - run: yarn test
- run: yarn lint - run: yarn lint
- name: "Copy files over to location" - name: "Copy files over to location"
run: rsync -rvzP . ${{ secrets.STAGE_REPO_PATH }} run: cp -r . ${{ secrets.STAGE_REPO_PATH }}
deploy: deploy:
environment: prod environment: prod