Skip to content

Commit

Permalink
Merge pull request #5 from kieler/ci
Browse files Browse the repository at this point in the history
Create main.yml
  • Loading branch information
Eddykasp authored Aug 17, 2023
2 parents 524c905 + a7a3a1d commit 2724074
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# CI workflow used for code quality checks and to ensure that a PR can be built.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: ci

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build-table-webview:
name: Build table-webview
runs-on: ubuntu-latest
defaults:
run:
working-directory: table-webview

steps:
- uses: actions/checkout@v2
- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
- uses: actions/setup-node@v2
with:
node-version: 14.x
- run: yarn
- run: yarn build

0 comments on commit 2724074

Please sign in to comment.