This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
⬆️ frontend: Bump next from 12.3.3 to 13.5.0 in /frontend #2167
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 |