Skip to content

Bump org.jetbrains.kotlin.android from 1.7.20 to 2.0.0 in /tictactoe_kotlin #206

Bump org.jetbrains.kotlin.android from 1.7.20 to 2.0.0 in /tictactoe_kotlin

Bump org.jetbrains.kotlin.android from 1.7.20 to 2.0.0 in /tictactoe_kotlin #206

Workflow file for this run

# This workflow will run lints on the javascript version of tictactoe
name: javascript
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Prettier
uses: actionsx/prettier@v3
with:
# prettier CLI arguments.
args: --check "./tictactoe_javascript/**.{css,js}"
- name: Install eslint
run: |
npm i eslint --save-dev
npm install @babel/core @babel/eslint-parser --save-dev
npm install
- name: Lint
run: ./node_modules/.bin/eslint .