Skip to content

Update eslint 9.33.0 → 9.35.0 (minor) #815

Update eslint 9.33.0 → 9.35.0 (minor)

Update eslint 9.33.0 → 9.35.0 (minor) #815

Workflow file for this run

name: test
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- run: yarn install
- run: yarn lint
- run: yarn test:only
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- run: yarn install
- run: yarn build:dist
- run: yarn build:es5
- run: yarn build:es6
- run: yarn build:examples