Skip to content

Bump xo from 0.48.0 to 0.54.2 #357

Bump xo from 0.48.0 to 0.54.2

Bump xo from 0.48.0 to 0.54.2 #357

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
check-latest: true
cache: 'npm'
- run: npm ci
- run: npm run lint
build:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
check-latest: true
cache: 'npm'
- run: npm ci
- run: npm run build
automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: '${{secrets.GITHUB_TOKEN}}'