diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0fcc609 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: Run CI + +on: + pull_request: + push: + branches: + - master + +env: + GH_PACKAGE_USERNAME: ${{ secrets.GH_PACKAGE_USERNAME }} + GH_PACKAGE_TOKEN: ${{ secrets.GH_PACKAGE_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - name: checkout repository + uses: actions/checkout@v4 + - name: Setup node + uses: actions/setup-node@v4 + with: + node-version: 16 + - run: | + yarn install