Skip to content

Bump @rollup/plugin-node-resolve from 15.2.1 to 15.2.3 #275

Bump @rollup/plugin-node-resolve from 15.2.1 to 15.2.3

Bump @rollup/plugin-node-resolve from 15.2.1 to 15.2.3 #275

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Read .nvmrc
id: nvm
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test