Skip to content

Show non-run events #430

Show non-run events

Show non-run events #430

Workflow file for this run

name: Build and test
on:
push:
branches:
- '**'
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
env:
CI: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn lint
- run: yarn test:ci
- run: yarn test:pluginapi:ci