Bump @types/node from 20.12.7 to 22.5.0 #2013
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Code Style Analysis | |
# Run on basicly every change to the tree | |
on: | |
push: | |
branches: ["**"] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
eslint: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Sets up node environment | |
- name: Use Node.js 17 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '17' | |
# Install node modules | |
- name: Install node modules | |
run: | | |
npm ci | |
# Attempt to build | |
- name: Run ESLint | |
run: | | |
./node_modules/.bin/eslint --max-warnings=0 . |