Skip to content

Merge pull request #33 from edpacca/posts-012 #131

Merge pull request #33 from edpacca/posts-012

Merge pull request #33 from edpacca/posts-012 #131

Workflow file for this run

name: Edpacca CI
run-name: ${{ github.head_ref }}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
CI:
if: '!github.event.pull_request.draft'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 1
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install Dependencies
run: npm install
- name: Check
run: npm run check
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build