Skip to content

chore: update deployment to v5.3 #98

chore: update deployment to v5.3

chore: update deployment to v5.3 #98

Workflow file for this run

name: Linting
on:
- pull_request
jobs:
lint:
strategy:
matrix:
node-version:
- 18.x
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint