Integration test for microsite with and without Datadog #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This test might not be possible because the resultant | |
# scaffolded templates need access to REI's private | |
# registry to get a few dependencies. This is not possible | |
# on github without some kind of proxy set up. | |
name: Integration tests | |
on: [push] | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: 'npm' | |
- run: npm ci |