1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 00:41:07 +01:00
actix-website/.github/workflows/website.yml

28 lines
478 B
YAML
Raw Permalink Normal View History

2023-11-01 16:24:51 +01:00
name: Website
on:
pull_request:
2023-02-03 19:55:15 +01:00
types: [opened, synchronize, reopened]
2023-11-01 16:24:51 +01:00
merge_group:
types: [checks_requested]
2023-02-03 19:55:15 +01:00
push:
branches: [main]
jobs:
2023-11-01 16:24:51 +01:00
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2023-02-03 20:00:55 +01:00
- uses: actions/setup-node@v4.1.0
with:
node-version: 18.x
cache: npm
- name: Install dependencies
2023-02-03 20:00:55 +01:00
run: npm ci
- name: Test build website
run: npm run build