mirror of
https://github.com/actix/actix-website
synced 2025-06-27 15:39:02 +02:00
rename workflows
This commit is contained in:
27
.github/workflows/website.yml
vendored
Normal file
27
.github/workflows/website.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
name: Website
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened]
|
||||
merge_group:
|
||||
types: [checks_requested]
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: actions/setup-node@v3.7.0
|
||||
with:
|
||||
node-version: 16.x
|
||||
cache: npm
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Test build website
|
||||
run: npm run build
|
Reference in New Issue
Block a user