Skip to content

Commit

Permalink
馃懛 add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Triginarsa committed Jun 29, 2023
1 parent 802d9b3 commit da3926a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on: [push, pull_request]

env:
DATABASE_URL: "https://triginarsa.com"

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install Dependencies
run: npm install

- name: Typecheck
run: npm run typecheck

- name: Lint
run: npm run lint

- name: Print Environment Variable
run: echo $MY_ENV_VAR

0 comments on commit da3926a

Please sign in to comment.