Skip to content

Commit

Permalink
Test 'npm install' for site/ in GitHub Action
Browse files Browse the repository at this point in the history
This helps to detect regressions causing this not to work anymore,
such as the googlecodelabs#882 problem.
  • Loading branch information
vorburger committed Oct 29, 2023
1 parent a700b24 commit f2f20db
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Go
name: Build

on:
push:
Expand All @@ -8,7 +8,7 @@ on:

jobs:

build:
claat:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
Expand All @@ -30,3 +30,14 @@ jobs:
- name: Test
working-directory: claat
run: go test -v ./...


site:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4

- name: NPM Install
working-directory: site
run: npm install

0 comments on commit f2f20db

Please sign in to comment.