Chore/rename initial title #26
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: Web Client Pull Request | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "client/**" | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
web-client-pr: | |
name: Web Client Pull Request | |
strategy: | |
matrix: | |
version: [16.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: ./.github/actions/node-setup | |
with: | |
versions: ${{ matrix.version }} | |
- name: Install Dependecies | |
uses: ./.github/actions/install-dependencies | |
- name: Client Build | |
uses: ./.github/actions/client-build | |
- name: Client Test | |
uses: ./.github/actions/client-test | |
- name: Es Lint | |
uses: ./.github/actions/es-lint |