ci: update action runners #509
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: Test & Build | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Test with Coverage | |
run: yarn test --coverage --coverageReporters=lcov | |
- name: ESLint | |
run: yarn eslint | |
- name: Report Coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Install dependencies | |
run: | | |
yarn install --frozen-lockfile | |
cd docs | |
yarn install --frozen-lockfile | |
- name: Build Dist | |
run: yarn build | |
- name: Bundlewatch | |
run: npx bundlewatch | |
- name: Build Docs | |
run: yarn build:docs |