forked from fkling/astexplorer
-
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (25 loc) · 656 Bytes
/
test.yml
File metadata and controls
27 lines (25 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Test
on:
pull_request:
branches:
- textlint
push:
branches:
- textlint
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
with:
node-version: '18'
- name: Install dependencies
run: yarn install
working-directory: ./website
- name: Install server dependencies
run: npm install
working-directory: ./server
- name: Build website
run: yarn run build
working-directory: ./website