Skip to content

Commit

Permalink
Merge pull request #76: Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlin authored Dec 15, 2023
2 parents 23f8460 + e0a0919 commit 8415153
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
push:
branches:
- master
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
- run: npm ci
- run: npm run build
2 changes: 1 addition & 1 deletion auspice_client_customisation/splash.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from "react"; // eslint-disable-line
import React from "react";
import { handleDroppedFiles } from "./handleDroppedFiles";
import { P, Bold, Title, NextstrainTitle, CenterContent, Line, GitHub } from './styles';
import pkg from "../package.json";
Expand Down
2 changes: 1 addition & 1 deletion auspice_client_customisation/styles.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from "react"; // eslint-disable-line
import React from "react";
import styled from 'styled-components';
const logoPNG = require("./nextstrain-logo-small.png");
const gitHubLogo = require("./GitHub-Mark-32px.png");
Expand Down

0 comments on commit 8415153

Please sign in to comment.