Update QA Stand #231
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update QA Stand | |
on: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Use Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install modules | |
run: | | |
yarn install | |
- name: Check external links | |
run: | | |
find ./README.md ./docs/ -regex ".*.[md|mdx]" -print0 | xargs -0 -n1 \ | |
./node_modules/markdown-link-check/bin/markdown-link-check --config linkcheck.config.json | |
# - name: Build | |
# run: | | |
# yarn clear | |
# yarn build | |
# - name: Deploy to s3 | |
# uses: jakejarvis/s3-sync-action@master | |
# with: | |
# args: --acl public-read --delete | |
# env: | |
# AWS_S3_BUCKET: ${{secrets.QA_AWS_S3_BUCKET}} | |
# AWS_ACCESS_KEY_ID: ${{secrets.QA_AWS_ACCESS_KEY_ID}} | |
# AWS_SECRET_ACCESS_KEY: ${{secrets.QA_AWS_SECRET_ACCESS_KEY}} | |
# AWS_REGION: ${{secrets.QA_AWS_REGION}} | |
# SOURCE_DIR: "build" |