chore(deps): bump amannn/action-semantic-pull-request from 5.2.0 to 5.3.0 #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: Node CI | |
on: | |
# Trigger the workflow manually via the GitHub UI | |
workflow_dispatch: | |
# Trigger the workflow when a pull_request's activity type is opened, | |
# synchronize, or reopened. | |
pull_request: | |
# Trigger the workflow on push | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "yarn" | |
- run: | |
yarn --prefer-offline --frozen-lockfile --no-progress --silent | |
--ignore-engines | |
- run: yarn lint | |
- run: yarn test |