build(deps-dev): bump @babel/preset-env from 7.25.4 to 7.26.0 #4330
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: | |
- pull_request | |
- push | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18.x, 20.x] | |
steps: | |
- name: Checkout 📝 | |
uses: actions/checkout@master | |
- name: Setup node env 👨🏻💻 | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Cache node_modules 📦 | |
uses: actions/[email protected] | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
cache: "yarn" | |
- name: Install dependencies ⚙ | |
run: yarn install | |
- name: Install dependencies 📦🛠️ | |
run: yarn installPackage | |
- name: Run tests 🧪 | |
run: yarn test | |
- name: Run Lint | |
run: yarn lint |