Skip to content

⬆️ Bump @babel/preset-env from 7.22.5 to 7.22.7 #1427

⬆️ Bump @babel/preset-env from 7.22.5 to 7.22.7

⬆️ Bump @babel/preset-env from 7.22.5 to 7.22.7 #1427

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies πŸ“¦
run: yarn
- name: Lint 🎨
run: yarn run lint
- name: Type check 🏷
run: yarn run typecheck
- name: Tests βœ…
run: yarn run test
- name: Upload coverage πŸ“ˆ
run: yarn run coverage:upload