Skip to content

Commit f5a794c

Browse files
authored
CI cleanup (schteppe#120)
* Clean up CI * Add name to job
1 parent 7343200 commit f5a794c

2 files changed

Lines changed: 19 additions & 51 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build and Test
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
test:
8+
name: Build and Test
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: 16
16+
cache: 'yarn'
17+
- run: yarn install
18+
- run: yarn build
19+
- run: yarn test

0 commit comments

Comments
 (0)