mirror of
https://github.com/actix/actix-website
synced 2024-11-24 00:41:07 +01:00
8393aea71a
Co-authored-by: ibraheemdev <ibrah1440@gmail.com>
24 lines
579 B
YAML
24 lines
579 B
YAML
name: Build check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
# Review gh actions docs if you want to further define triggers, paths, etc
|
|
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
|
|
|
|
jobs:
|
|
test-deploy:
|
|
name: Build check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.x
|
|
cache: npm
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Test build website
|
|
run: npm run build |