Skip to content

Commit

Permalink
chore(ci): Build on push
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyvgy committed Dec 14, 2023
1 parent 9105b01 commit 8d1996d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI tests

on:
workflow_dispatch:
push:

jobs:
ci-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: ⎔ Cache node_modules
uses: actions/cache@v3
env:
cache-name: node_modules-20x
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}
- name: 📥 Download deps
run: yarn install --frozen-lockfile
- name: ⎔ Build package
run: yarn build

0 comments on commit 8d1996d

Please sign in to comment.