fix: restart node after restore test in example app #540
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache node modules | |
uses: actions/cache@v4 | |
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 |