Skip to content

Commit

Permalink
Github action to verify build
Browse files Browse the repository at this point in the history
  • Loading branch information
killergerbah committed Dec 29, 2023
1 parent 66c5119 commit 79bfc53
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Verify

on:
push:
branches: [$default-branch]
pull_request:

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install --global yarn
- run: yarn set version 3.2.0
- run: yarn run verify

0 comments on commit 79bfc53

Please sign in to comment.