build(deps-dev): bump standard from 12.0.1 to 17.1.2 #41
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: CI Pipeline | |
# Trigger the workflow on push and pull request events to the main branch | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest # You can also use other runners like windows-latest or macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "22" | |
- name: Install dependencies | |
run: npm install | |
- name: Run linter | |
run: npm run lint:check | |
- name: Build the project | |
run: npm run build |