Merge pull request #37 from tinybirdco/feat/reference-cdn #123
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
name: CI | |
on: [push] | |
jobs: | |
dashboard: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
cache: "npm" | |
cache-dependency-path: dashboard/package-lock.json | |
- name: npm install, build, and test | |
run: | | |
npm install --prefix dashboard | |
npm run lint --prefix dashboard --if-present | |
npm run test --prefix dashboard --if-present | |
npm run build --prefix dashboard | |
env: | |
CI: true |