This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
Bump @typescript-eslint/typescript-estree from 5.59.8 to 6.9.0 #1261
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: specs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
env: | |
NODE_VERSION: 18.13.0 | |
jobs: | |
specs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Node | |
uses: BuoySoftware/github-actions/setup-node@main | |
with: | |
install-dependencies: false | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Yarn install | |
run: yarn install | |
- name: Compile Typescript | |
run: yarn compile | |
- name: Run specs | |
run: yarn test |