Adding the blog post "Meshery Meetings: Where Newcomers Become Open Source Contributors"" and 2025 folder #1050
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: Checks | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [opened, synchronize, reopened] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@master | |
with: | |
persist-credentials: false | |
fetch-depth: 1 | |
- name: NPM Install | |
run: npm install --legacy-peer-deps | |
- name: Build | |
run: npm run build | |
- name: Run Eslint | |
run: npm run checklint |