Skip to content

Commit

Permalink
👷 chore: add ci
Browse files Browse the repository at this point in the history
Signed-off-by: SimonShiki <sinangentoo@gmail.com>
  • Loading branch information
SimonShiki committed Oct 28, 2023
1 parent 4c4ce07 commit 8c70077
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Validate

on:
pull_request:
push:

jobs:
validate:
name: Validating Code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'yarn'
- name: Install and build
run: yarn install --frozen-lockfile && yarn run build

0 comments on commit 8c70077

Please sign in to comment.