Skip to content

Switch to NPM_TOKEN #40

Switch to NPM_TOKEN

Switch to NPM_TOKEN #40

Workflow file for this run

name: Lint and Test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout Repo
uses: actions/checkout@main
- name: Setup Node.js 14.x
uses: actions/setup-node@main
with:
node-version: 14.x
- name: Install Dependencies
run: yarn --immutable
- name: Lint
run: yarn lint
- name: Test
run: yarn test