This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
⬆️ backend: Bump meilisearch from 0.32.3 to 0.34.1 in /backend/services/core #1972
Workflow file for this run
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Linter check | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main, stage] | |
jobs: | |
linter_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- run: npm ci | |
- run: npm run lint |