Skip to content

Commit

Permalink
Create check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBrax committed Nov 7, 2023
1 parent a9ee57a commit fe8ac62
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check

on:
push:
branches: [ master ]
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v4
with:
submodules: "true"
- name: Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn
- name: yarn install, lint and build
run: |
yarn install --immutable --immutable-cache
yarn build
yarn buildlib

0 comments on commit fe8ac62

Please sign in to comment.