build(deps-dev): bump the dev-deps group across 1 directory with 10 u… #722
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
--- | |
# Main build and test CI | |
name: CI | |
on: [push, pull_request] # Run on Push and Pull Requests | |
jobs: | |
clean-lint-build-test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn | |
- name: Clean build directories | |
run: yarn clean | |
- name: Lint the code | |
run: yarn lint | |
- name: Build | |
run: yarn build | |
- name: Run Tests | |
run: yarn test |