fix(deps): update dependency eslint-config-xo-typescript to v1 #1568
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Bundles' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
bundlewatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GitHub context | |
run: echo "$GITHUB_CONTEXT" | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node (uses version in .nvmrc) | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --immutable | |
- uses: jackyef/bundlewatch-gh-action@master | |
with: | |
build-script: yarn build | |
bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} |