diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..362daf80 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,14 @@ +name: CI +on: [push] +jobs: + build: + name: Builds + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - run: yarn install + - run: yarn build +