Skip to content

Commit

Permalink
💚 add script for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJustLucas committed Mar 19, 2024
1 parent 7730282 commit 404abbe
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Continuous Integration

on: [push]

env:
NODE_OPTIONS: "--max_old_space_size=4096"

jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}

runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["16.x", "18.x", "20.x"]
os: [ubuntu-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Use pnpm
uses: pnpm/[email protected]
with:
version: "latest"

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"

- name: Install Dependencies
run: pnpm i

- name: Lint
run: pnpm lint

- name: Build Packages
run: pnpm build

0 comments on commit 404abbe

Please sign in to comment.