chore(deps-dev): bump the development-dependencies group with 2 updates #82
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
CI: true | |
jobs: | |
# Checks files with ESLint and Prettier | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: 0xTheProDev/setup-js@v1.2 | |
with: | |
cache: yarn | |
version-file: .nvmrc | |
- name: Lint all files | |
shell: bash | |
run: yarn lint | |
# Runs unit tests | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: 0xTheProDev/setup-js@v1.2 | |
with: | |
cache: yarn | |
version-file: .nvmrc | |
- name: Run all tests | |
shell: bash | |
run: yarn test | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Environment | |
uses: 0xTheProDev/setup-js@v1.2 | |
with: | |
cache: yarn | |
version-file: .nvmrc | |
- name: Build | |
shell: bash | |
run: yarn build |