From 5c662ac5b4f6664d4d0a1d501d7d2fa2f2fc0621 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 9 Feb 2022 17:22:30 -0600 Subject: Start rewriting the entire app Signed-off-by: Matt Strapp --- .github/workflows/node.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/node.yml (limited to '.github') diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml new file mode 100644 index 0000000..e4c4153 --- /dev/null +++ b/.github/workflows/node.yml @@ -0,0 +1,24 @@ +name: Node.js CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v2 + with: + node-version: "14.x" + cache: "yarn" + - name: Install dependencies + run: yarn --frozen-lockfile + - name: Lint + run: yarn lint + - name: Build the project + run: yarn build:ci -- cgit v1.2.3