Skip to content

🔁 Bump @types/node, prettier, and xdeployer #156

🔁 Bump @types/node, prettier, and xdeployer

🔁 Bump @types/node, prettier, and xdeployer #156

Workflow file for this run

name: 👮‍♂️ Sanity checks
on: [push, pull_request]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node_version:
- 16
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Restore Yarn cache
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Install Yarn project with a clean slate
run: yarn install --prefer-offline --frozen-lockfile
- name: Prettier and lint
run: yarn lint:check
codespell:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run codespell
uses: codespell-project/actions-codespell@v1.0
with:
check_filenames: true
skip: ./.git,yarn.lock