Create build.yml (#164)

This github action when enabled will help us find any build error on commits.
This commit is contained in:
Anant Shrivastava 2023-05-23 01:46:53 +05:30 committed by GitHub
parent 9d45cde0e6
commit 2899392b9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

30
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,30 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Check for any build error
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
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
- run: npm run build --if-present