Skip to content

build(deps): bump actions/checkout from 3.1.0 to 4.1.0 #348

build(deps): bump actions/checkout from 3.1.0 to 4.1.0

build(deps): bump actions/checkout from 3.1.0 to 4.1.0 #348

Workflow file for this run

name: Node CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v4.1.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.4.1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, build, and test
run: |
yarn install
yarn lint
yarn build
yarn test
env:
CI: true
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}