chore(deps): bump actions/setup-node from 3 to 4 #16
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: Mergeability | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
build: | |
name: Build & Tests Check | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Setuping Node | |
uses: actions/setup-node@v4 | |
- name: Dependencies Install | |
run : npm install | |
- name: Lint Fix | |
run: npm run lint --fix | |
- name: Unit Test | |
run: npm run test |