Skip to content

Commit

Permalink
Create simple workflow with dependency install/cache and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikmonsen committed Apr 17, 2024
1 parent 217d2f3 commit 1fe99e6
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI/CD Pipeline

on: [push]
# push:
# branches:
# - "**"
# tags:
# - "v*.*.*"
# pull_request:
# branches:
# - "main"

jobs:
lint-and-test:
name: Run linter and tests
runs-on: [self-hosted, Linux]
steps:
- name: Checkout the repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.12.7"
cache: "npm"

- name: Install dependencies
run: npm install

- name: Linting
run: npm run lint

0 comments on commit 1fe99e6

Please sign in to comment.