Skip to content

Update CI Node.js version #15

Update CI Node.js version

Update CI Node.js version #15

name: Check project standards
on: push
jobs:
check-javascript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
- run: yarn install
- run: npm exec eslint -- "**/*.js"
- run: npm exec prettier -- --check "**/*.{json,yml}"
- run: npm exec tsc