1
0
mirror of https://github.com/actix/actix-website synced 2025-01-22 16:15:56 +01:00
actix-website/.github/workflows/build-check.yml

26 lines
447 B
YAML
Raw Normal View History

2023-02-03 13:55:15 -05:00
name: Build website
on:
pull_request:
2023-02-03 13:55:15 -05:00
types: [opened, synchronize, reopened]
push:
branches: [main]
jobs:
test-deploy:
name: Build check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2023-02-03 14:00:55 -05:00
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: Install dependencies
2023-02-03 14:00:55 -05:00
run: npm ci
- name: Test build website
run: npm run build