Skip to content

Bump @babel/eslint-parser from 7.22.9 to 7.22.10 (#39) #84

Bump @babel/eslint-parser from 7.22.9 to 7.22.10 (#39)

Bump @babel/eslint-parser from 7.22.9 to 7.22.10 (#39) #84

Workflow file for this run

name: Main CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 18.x
steps:
- uses: actions/checkout@v3
- name: Touch Lock File
run: touch yarn.lock
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install
run: yarn install
- name: Linter
run: yarn lint
- name: Test
run: yarn test