Bump typescript-eslint from 8.9.0 to 8.14.0 #19
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: Node.js CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: ./scripts/build.sh | |
#============================================================================== | |
# UNCOMMENT THIS SECTION ONCE WE HAVE PUBLISHING TO NPM.ORG | |
#============================================================================== | |
# - run: yarn install --frozen-lockfile | |
# - run: yarn lint-verify | |
# - run: yarn build | |
# - run: yarn test | |
# - run: yarn publish-verify |