Skip to content

feat: run e2e-ios tests on macos-14 #473

feat: run e2e-ios tests on macos-14

feat: run e2e-ios tests on macos-14 #473

Workflow file for this run

name: lib-lint-check
on:
pull_request:
branches:
- 'master'
defaults:
run:
working-directory: lib
jobs:
eslint:
name: Run lint check
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache node modules
uses: actions/cache@v3
id: npmcache
with:
path: lib/node_modules
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install lib dependencies
if: steps.npmcache.outputs.cache-hit != 'true'
run: yarn install
- name: Lint check
run: yarn lint:check