fix: corrected typos in ReadMe #13972
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: Lint, Test and Build | |
on: | |
push: | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Install packages | |
run: yarn install --frozen-lockfile | |
- name: Test | |
run: yarn test | |
- name: Lint | |
run: yarn lint | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
if: github.ref == 'main' || github.ref == 'production' | |
with: | |
token: ${{ secrets.DOCKER_GIT_TOKEN }} | |
event-type: automation | |
repository: 100mslive/playwright-automation |