mirror of
https://github.com/actix/actix-website
synced 2024-11-24 00:41:07 +01:00
26 lines
447 B
YAML
26 lines
447 B
YAML
name: Build website
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test-deploy:
|
|
name: Build check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.x
|
|
cache: npm
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Test build website
|
|
run: npm run build
|