Skip to content

Bump @types/node from 22.5.4 to 22.7.2 in /js #753

Bump @types/node from 22.5.4 to 22.7.2 in /js

Bump @types/node from 22.5.4 to 22.7.2 in /js #753

Workflow file for this run

name: Review
on:
push:
branches:
- main
pull_request:
concurrency:
group: review-${{github.ref}}
cancel-in-progress: true
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: v1.19
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/cache@v2
with:
path: |
~/go/bin
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run linter
run: make lint
js-lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./js
strategy:
fail-fast: true
matrix:
nodejs: [16, 18]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Cache 📦
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup ⬢
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.nodejs }}
- name: Install 🔧
run: npm install
- name: Lint 🙈
run: npm run prettier && npm run lint