fix: navpills alignment to center #638
Workflow file for this run
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: Snapshots Workflow for www RDS | |
# Controls when the action will run. | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [develop] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
branches: [develop] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
generate-snapshots: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Runs a single command using the runners shell | |
- name: Run echo script | |
run: echo Starting the screenshot process | |
- name: Percy Test | |
uses: percy/[email protected] | |
with: | |
# build-directory: # optional, default is | |
# CLI flags to pass to `percy snapshot` | |
# flags: # optional, default is | |
# Enable verbose logging | |
verbose: true | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | |
Lint-Check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm run check |