Skip to content

Merge pull request #875 from wallabag/dependabot/npm_and_yarn/serverl… #1133

Merge pull request #875 from wallabag/dependabot/npm_and_yarn/serverl…

Merge pull request #875 from wallabag/dependabot/npm_and_yarn/serverl… #1133

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
CI: true
TZ: 'Europe/Paris'
NODE_ENV: 'test'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: checkout
uses: actions/checkout@v3
- name: use node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: install
run: yarn install
- name: lint
run: yarn lint
- name: test
run: yarn test