Skip to content

Commit

Permalink
Merge pull request #342 from killergerbah/workflow
Browse files Browse the repository at this point in the history
Github action to verify build
  • Loading branch information
killergerbah authored Dec 29, 2023
2 parents 66c5119 + 4005ed2 commit 05bac08
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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 install
- run: yarn run verify

0 comments on commit 05bac08

Please sign in to comment.