Skip to content

Revert "Bump browserify-sign from 4.2.1 to 4.2.3" #86

Revert "Bump browserify-sign from 4.2.1 to 4.2.3"

Revert "Bump browserify-sign from 4.2.1 to 4.2.3" #86

Workflow file for this run

name: Tests
on:
push:
branches:
- dev
pull_request:
workflow_dispatch:
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "DIR=$(yarn cache dir)" >> $GITHUB_ENV
- uses: actions/cache@v4
id: yarn-cache
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: ESLint
run: yarn lint