Skip to content

v8.49.0

v8.49.0 #185

Workflow file for this run

name: Lint, test, and build the package
on: push
jobs:
build:
name: Build, lint, and test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Test
run: yarn test --coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
- name: Build
run: yarn build