chore(deps-dev): bump rimraf from 5.0.5 to 6.0.1 #99
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: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
main: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: corepack enable | |
# Required for yarn, when run via act locally | |
- name: Install Dependencies | |
run: yarn install | |
- name: Lint Commit Message | |
run: | | |
echo $(git log -1 --pretty=format:"%s") | yarn commitlint | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test |